golang默认的下载站点网络不通
go: gopkg.in/gomail.v2@v2.0.0-20160411212932-81ebce5c23df: Get https://proxy.golang.org/gopkg.in/gomail.v2/@v/v2.0.0-20160411212932-81ebce5c23df.mod: dial tcp 216.58.200.241:443: connect: connection refused
可以使用一下两种方法解决
1.设置阿里云的代理服务
- 1.使用go1.11以上版本并开启go module机制
- 2.导出GOPROXY环境变量
linux:
export GOPROXY=https://mirrors.aliyun.com/goproxy/
windows:
set GOPROXY=https://mirrors.aliyun.com/goproxy/
2.设置代理服务器
linux:
export http_proxy=socks5://127.0.0.1:1080
windows:
set http_proxy=socks5://127.0.0.1:1080