原因: go get访问github很慢,可以通过增加代理来加快访问速度
处理步骤:
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
go get github.com/xxx/xxx
可能出现的错误:
GoLand报错:warning: go env -w GOPROXY=… does not override conflicting OS environm
查看golang环境变量,会发现本地cmd和GoLand terminal中的GOPROXY值不一致
处理步骤:
- 打开GoLand Settings
- 找到Go Modules配置
- 修改GOPROXY=https://goproxy.cn,direct
- 重启GoLand