Last active
August 29, 2015 14:07
-
-
Save codegirl-007/dce128adb440a786f3b0 to your computer and use it in GitHub Desktop.
Installing GoLang on Fedora
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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