mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 07:06:42 +00:00
1. Making the Ubuntu build work 2. Adding support for Debian 3. Adding support for CentOS
11 lines
371 B
Bash
Executable file
11 lines
371 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo apt-get install -y build-essential git-all wget
|
|
sudo apt-get update
|
|
|
|
wget --continue https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz
|
|
sudo tar -C /usr/local -xzf go1.8.1.linux-amd64.tar.gz
|
|
|
|
GETH_PATH="~vagrant/go/src/github.com/ethereum/go-ethereum/build/bin/"
|
|
|
|
echo "export PATH=$PATH:/usr/local/go/bin:$GETH_PATH" >> ~vagrant/.bashrc
|