Skip to content

Instantly share code, notes, and snippets.

@franklinjavier
Created November 27, 2014 02:03
Show Gist options
  • Select an option

  • Save franklinjavier/0c91a4808f896f59cca5 to your computer and use it in GitHub Desktop.

Select an option

Save franklinjavier/0c91a4808f896f59cca5 to your computer and use it in GitHub Desktop.
Installing GoLang in GNU/Linux
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