# learn-go ## 安装 Go ```bash brew install go ``` 配置环境 ```bash export GOROOT=/usr/local/opt/go/libexec export GOPATH=$HOME/.go export PATH=$PATH:$GOROOT/bin:$GOPATH/bin ``` ### 安装 Go 依赖管理工具:godep ``` brew install dep ``` TBD.