Created
June 22, 2017 18:32
-
-
Save waltervargas/a4baff8e929a9d031ee4e9fcb92bcee2 to your computer and use it in GitHub Desktop.
Installs go version 1.8.3 in your $HOME directory
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
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