[Go实战]mac-homebrew 安装go

503 阅读1分钟

使用 homebrew 安装 Go

安装

brew install go

设置 GOPATH & bin

echo 'export GOPATH=$HOME/Go' >> ~/.bash_profile
echo 'export PATH=$PATH:$GOPATH/bin' >> ~/.bash_profile
source ~/.bash_profile