Created
November 27, 2014 02:03
-
-
Save franklinjavier/0c91a4808f896f59cca5 to your computer and use it in GitHub Desktop.
Installing GoLang in GNU/Linux
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
| wget https://storage.googleapis.com/golang/go1.3.3.linux-amd64.tar.gz | |
| tar xf go1.3.3.linux-amd64.tar.gz | |
| rm go1.3.3.linux-amd64.tar.gz | |
| echo "export GOROOT=\$HOME/go" >> ~/.profile | |
| echo "PATH=$PATH:\$GOROOT/bin" >> ~/.profile | |
| source ~/.profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment