Created
June 19, 2015 03:05
-
-
Save yuuichi-fujioka/963793914d5289e0d391 to your computer and use it in GitHub Desktop.
install go 1.4.2 to ubuntu 14.04
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
wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz -O /tmp/go.tar.gz | |
pushd /tmp | |
tar xf go.tar.gz | |
sudo mv go /usr/local/go | |
sudo rm -fr /etc/alternatives/go | |
sudo ln -s /usr/local/go/bin/go /etc/alternatives/go | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment