Skip to content

Instantly share code, notes, and snippets.

@stephanie-gredell
Last active August 29, 2015 14:07
Show Gist options
  • Save stephanie-gredell/dce128adb440a786f3b0 to your computer and use it in GitHub Desktop.
Save stephanie-gredell/dce128adb440a786f3b0 to your computer and use it in GitHub Desktop.
Installing GoLang on Fedora
sudo yum install mercurial
hg clone -u release https://go.googlecode.com/hg/golang
#there's a fair bit of waiting at this step apparently.
cd golang/src
./all.bash
#some waiting is necessary here too.
#replace you with your username here
export GOROOT=/home/you/golang
export PATH=$PATH:$GOROOT/bin
#and you're done. An easy way to make sure things are okay is to do this:
go version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment