mac下配置golang环境变量

cd /etc
sufo vim profile

在profile文件尾部追加这几句话

export GOROOT=/opt/go
export PATH=$GOROOT/bin:$PATH
export GOPATH=$HOME/goprojects/

你可能感兴趣的:(go)