Windows go get下载包失败问题解决


报错情况

下载gin包,报错如下:

unrecognized import path "golang.org/x/crypto/sha3": https fetch: Get "https://golang.org/x/crypto/sha3?go-get=1": dial tcp 216.239.37.1: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.
unrecognized import path "google.golang.org/protobuf/encoding/prototext": https fetch: Get "https://google.golang.org/protobuf/encoding/prototext?go-get=1": dial tcp 216.239.37.1: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.

如图:

解决方案

设置代理

cmd下输入:SET GO111MODULE=on

接着cmd输入:SET GOPROXY=https://goproxy.cn

这里参考的文章上是:

在代理链接外添加了双引号,但是事实上:

出现了转义

go get github.com/gin-gonic/gin: parse "\"https://goproxy.cn\"": first path segment in URL cannot contain colon

所以这里我们灵活修改为 SET GOPROXY=https://goproxy.cn

代理设置完成,成功下载

参考链接


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM