开启阿里云Go Module代理仓库服务
2020-01-16 本文已影响0人
飞跑的蛤蟆
1.使用go1.11以上版本并开启go module机制
$ echo "export GO111MODULE=on" >> /etc/profile
2.导出GOPROXY环境变量
$ echo "export GOPROXY=https://mirrors.aliyun.com/goproxy/" >> /etc/profile
- 载入新添加的环境变量
$ source /etc/profile