golang GOPROXY配置

默认安装golang开发环境,其中GOPROXY的地址是https://proxy.golang.org
通常这个地址是访问不了的。
国内可以使用几个代理地址替换它,替换命令
windows:
go env -w GOPROXY=https://goproxy.cn

macOS 或 Linux:
export GOPROXY=https://goproxy.cn

你可能感兴趣的:(golang GOPROXY配置)