Created
February 21, 2017 00:43
-
-
Save Adron/d5c64ba4bf2e24b0e691516f9a9078ce to your computer and use it in GitHub Desktop.
Installing Golang
This file contains 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
# Uninstall the previous version of #Golang > https://golang.org/doc/install#uninstall | |
curl -O https://storage.googleapis.com/golang/go1.8.linux-386.tar.gz | |
sudo tar -C /usr/local -zxf go1.8.linux-386.tar.gz | |
# You can run this with this script and also, don't forget to add it to the appropriate bash file. (~/.bashrc etc) | |
sudo tar -C /usr/local -zxf go1.8.linux-386.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment