Golang1.13.x 解决go get 无法下载问题

Posted zhangmingcheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang1.13.x 解决go get 无法下载问题相关的知识,希望对你有一定的参考价值。

安装golang github.com/hyperledger/fabric-contract-api-go依赖包的时候,长时间无响应,最后报如下错误:

go: github.com/hyperledger/fabric-contract-api-go@v1.0.0: Get https://proxy.golang.org/github.com/hyperledger/fabric-contract-api-go/@v/v1.0.0.mod: dial tcp 172.217.27.145:443: i/o timeout
~/fabric-samples/test-network
Finished vendoring Go dependencies
++ peer lifecycle chaincode package fabcar.tar.gz --path ../chaincode/fabcar/go/ --lang golang --label fabcar_1
++ res=1
++ set +x
Error: failed to normalize chaincode path: ‘go list‘ failed with: go: github.com/hyperledger/fabric-contract-api-go@v1.0.0: Get https://proxy.golang.org/github.com/hyperledger/fabric-contract-api-go/@v/v1.0.0.mod: dial tcp 172.217.27.145:443: i/o timeout: exit status 1
!!!!!!!!!!!!!!! Chaincode packaging on peer0.org1 has failed !!!!!!!!!!!!!!!!

ERROR !!! Deploying chaincode failed

解决办法

使用七牛云 go module 镜像

golang1.13.x 可以直接执行:

go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct

然后再次使用 go get 下载 gin 依赖就可以了。

以上是关于Golang1.13.x 解决go get 无法下载问题的主要内容,如果未能解决你的问题,请参考以下文章

Go语言 go get 找不到 google.golang.org/protobuf/encoding/prototext 解决办法

关于go get无法安装国内被墙软件解决办法

解决Golang使用过程中go get 下载github项目慢或无法下载

解决go get proxy代理慢的问题

【GoLang】GO命令中go get拉取库卡住、慢的解决方法

无法在 Go 中构造 HTTP GET 请求