安装
- https://studygolang.com/dl 下载mac版本
- 点击下载好的 pkg 一路安装便安装到了 /usr/local/go 目录下
- 添加环境变量
vim ~/.bash_profile 最下面条件两行
export GOROOT=/usr/local/go
export PATH=$PATH:$GOROOT/bin
go mod 配置
- 首先开启 go module (go 1.11以上)
go env -w GO111MODULE=on - 配置goproxy: (go module 的包国内代理地址)
export GOPROXY=https://goproxy.cn 一次性
go env -w GOPROXY=https://goproxy.cn,direct 永久
Go 1.13设置了默认的GOSUMDB=sum.golang.org,是用来验证包的有效性。这个网址由于墙的原因可能无法访问,所以可以使用下面命令来关闭:
export GOSUMDB=off 一次性
go env -w GOSUMDB=off 永久
有疑问加站长微信联系(非本文作者)