Skip to content

Instantly share code, notes, and snippets.

@demofly
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save demofly/fdb6516880d1eb080944 to your computer and use it in GitHub Desktop.
Save demofly/fdb6516880d1eb080944 to your computer and use it in GitHub Desktop.
How to install Go 1.3 in debian wheezy
apt-get install devscripts build-essential
apt-get build-dep golang-go
wget http://ftp.de.debian.org/debian/pool/main/g/golang/golang_1.3-1.dsc
wget http://ftp.de.debian.org/debian/pool/main/g/golang/golang_1.3.orig.tar.gz
wget http://ftp.de.debian.org/debian/pool/main/g/golang/golang_1.3-1.debian.tar.xz
dpkg-source -x golang_1.3-1.dsc
cd golang-1.3/
debuild -us -uc
cd ..
dpkg -i golang-go_1.3-1_amd64.deb golang-src_1.3-1_amd64.deb golang-go-linux-amd64_1.3-1_amd64.deb vim-syntax-go_1.3-1_all.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment