Skip to content

Instantly share code, notes, and snippets.

@waltervargas
Created June 22, 2017 18:32
Show Gist options
  • Save waltervargas/a4baff8e929a9d031ee4e9fcb92bcee2 to your computer and use it in GitHub Desktop.
Save waltervargas/a4baff8e929a9d031ee4e9fcb92bcee2 to your computer and use it in GitHub Desktop.
Installs go version 1.8.3 in your $HOME directory
cd $HOME
wget https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz
tar -zxvf go1.8.3.linux-amd64.tar.gz
mv go go1.8.3
ln -s go1.8.3 go
echo "Done. You need to add $HOME/go/bin to $PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment