Last active
September 9, 2015 05:27
-
-
Save kudarap/4fcb6788b771464d8ff3 to your computer and use it in GitHub Desktop.
install go lang at ease
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'go install ...' | |
wget https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz; | |
tar xvf go1.5.1.linux-amd64.tar.gz; | |
sudo mv go /usr/local | |
export PATH=$PATH:/usr/local/go/bin | |
sudo mkdir /project/go | |
export GOPATH=/project/go | |
echo 'done!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment