Created
November 25, 2015 08:48
-
-
Save dimm999/e3bb9a6ee4cacb636525 to your computer and use it in GitHub Desktop.
Golang Path setup on Linux
This file contains 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
#В зависимости от эмулятора терминала, нужно добавить в ~/.bashrc (.zshrc, etc), следующие строки: | |
export GOROOT=/usr/local/go | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin | |
#/usr/local/go - расположение самой инсталляции (может отличатся в зависимости от системы и в случае использования менеджера управления версиями) | |
#$HOME/go - расположение любой директории, в которой хотите хранить пакеты |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It works, thanks!