执行下面的命令写入用户环境变量
注意事项
如果之前配置过加速环境,需要先删除,避免混乱
开始配置-Windows
使用CMD
或者PowerShell
执行下面的命令
开启模块
go env -w GO111MODULE=on
配置七牛加速
go env -w GOPROXY=https://goproxy.cn,direct
配置阿里云加速
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/
执行完成之后,重新打开终端go get
即可
开始配置-Linux
Go七牛云加速
echo "export GO111MODULE=on" >> ~/.profile
echo "export GOPROXY=https://goproxy.cn" >> ~/.profile
source ~/.profile
Go阿里云加速
echo "export GO111MODULE=on" >> ~/.profile
echo "export GOPROXY=https://mirrors.aliyun.com/goproxy/" >> ~/.profile
source ~/.profile
Go官方加速
# 配置 GOPROXY 环境变量
echo "export GOPROXY=https://goproxy.io,direct" >> ~/.profile
# 还可以设置不走 proxy 的私有仓库或组,多个用逗号相隔(可选)
echo "export GOPRIVATE=git.mycompany.com,github.com/my/private" >> ~/.profile
source ~/.profile