Skip to content

Instantly share code, notes, and snippets.

@huobazi
Created October 30, 2017 16:45
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 huobazi/d37ffa614baae60a315f07baf781f19e to your computer and use it in GitHub Desktop.
Save huobazi/d37ffa614baae60a315f07baf781f19e to your computer and use it in GitHub Desktop.
Install golang
# install golang
GOREL=go1.7.3.linux-amd64.tar.gz
wget https://storage.googleapis.com/golang/$GOREL
tar xfz $GOREL
mv go /usr/local/go
rm -f $GOREL
PATH=$PATH:/usr/local/go/bin
echo 'PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment