Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created June 19, 2015 03:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuuichi-fujioka/963793914d5289e0d391 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/963793914d5289e0d391 to your computer and use it in GitHub Desktop.
install go 1.4.2 to ubuntu 14.04
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