Skip to content

Instantly share code, notes, and snippets.

@ScullWM
Last active April 4, 2018 19:34
Show Gist options
  • Save ScullWM/bc1ebf39dfd615cd4c9e3d8e888841a5 to your computer and use it in GitHub Desktop.
Save ScullWM/bc1ebf39dfd615cd4c9e3d8e888841a5 to your computer and use it in GitHub Desktop.
linux install golang - 1.10
curl -O https://dl.google.com/go/go1.10.linux-amd64.tar.gz
tar -xvf go1.10.linux-amd64.tar.gz
mv go /usr/local
apt-get install nano
nano ~/.profile
#export PATH=$PATH:/usr/local/go/bin
source ~/.profile
@ScullWM
Copy link
Author

ScullWM commented Apr 4, 2018

curl -O https://dl.google.com/go/go1.7.linux-amd64.tar.gz
tar -xvf go1.7.linux-amd64.tar.gz
mv go /usr/local
apt-get install nano
nano ~/.profile
#export PATH=$PATH:/usr/local/go/bin
source ~/.profile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment