Last active
August 29, 2015 13:56
-
-
Save myitcv/9268772 to your computer and use it in GitHub Desktop.
New go env
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
gvm install go1.2 | |
gvm pkgenv # to add $HOME/gostuff to GOPATH | |
# add to to end of .bashrc | |
gvm use go1.2 > /dev/null 2>&1 | |
export PATH="${GOPATH//://bin:}/bin:$PATH" | |
# restart bash | |
exec bash | |
# we will now have a working go | |
# install gocode | |
go get -u github.com/nsf/gocode |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment