Skip to content

Instantly share code, notes, and snippets.

@hfeeki
Created December 19, 2013 02:23
Show Gist options
  • Save hfeeki/8033381 to your computer and use it in GitHub Desktop.
Save hfeeki/8033381 to your computer and use it in GitHub Desktop.
Install golang in ubuntu
#!/bin/bash
# installing golang on ubuntu's
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:gophers/go
sudo apt-get update
sudo apt-get install golang-stable # Or golang-weekly, or golang-tip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment