go mod下载依赖错误Get https://sum.golang.org

升级1.13版本之后下载依赖出现错误:

verifying github.com/gorilla/[email protected]/go.mod: github.com/gorilla/[email protected]/go.mod: Get https://sum.golang.org/lookup/gi
thub.com/gorilla/[email protected]: dial tcp 172.217.24.17:443: connectex: A connection attempt failed because the connected party did
not properly respond after a period of time, or established connection failed because connected host has failed to respond.

原因是1.13之后设置了默认的GOSUMDB=sum.golang.org,由于墙的原因无法访问,执行以下命令关闭即可:

go env -w GOSUMDB=off

 

你可能感兴趣的:(Go,奇葩错误,GO语言)