Skip to content

Instantly share code, notes, and snippets.

@tzmartin
Created November 16, 2013 23:24
Show Gist options
  • Save tzmartin/7506739 to your computer and use it in GitHub Desktop.
Save tzmartin/7506739 to your computer and use it in GitHub Desktop.
Manually install Go v1.1.1 on Debian. Current package manager is 1.0.
sudo apt-get install -y debhelper build-essential autotools-dev
curl -s -o /tmp/go.tar.gz https://go.googlecode.com/files/go1.1.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf /tmp/go.tar.gz
sudo ln -s /usr/local/go/bin/go /usr/local/bin/go
@tzmartin
Copy link
Author

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