Skip to content

Instantly share code, notes, and snippets.

@jcooklin
Last active August 29, 2015 14:14
Show Gist options
  • Save jcooklin/79baf44bb40b976aa6f3 to your computer and use it in GitHub Desktop.
Save jcooklin/79baf44bb40b976aa6f3 to your computer and use it in GitHub Desktop.
install go on ubuntu
#!/bin/bash
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:gophers/go
sudo apt-get update
sudo apt-get install golang-stable
#!/bin/bash
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:gophers/go
sudo apt-get update
sudo apt-get install golang-stable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment