forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
371 B
11 lines
371 B
#!/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
|
|
|