Skip to content

Instantly share code, notes, and snippets.

@kudarap
Last active September 9, 2015 05:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kudarap/4fcb6788b771464d8ff3 to your computer and use it in GitHub Desktop.
Save kudarap/4fcb6788b771464d8ff3 to your computer and use it in GitHub Desktop.
install go lang at ease
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