成功解决Error: failed to normalize chaincode path: ‘go list‘ failed with: go: github.com/golang/protobuf

fabric-sample中部署链码时报错,报错原因是下载依赖的连接被拒绝,如下所示

Error: failed to normalize chaincode path: 'go list' failed with: go: github.com/golang/[email protected]: Get "https://proxy.golang.org/github.com/golang/protobuf/@v/v1.3.2.mod": dial tcp 172.217.160.81:443: connect: connection refused: exit status 1

在这里插入图片描述
解决方案,打开GO111MODULE工具,更换Go代理,命令行输入

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

随后再次执行打包链码的指令,下载依赖成功,解决报错
成功解决Error: failed to normalize chaincode path: ‘go list‘ failed with: go: github.com/golang/protobuf_第1张图片

欢迎小伙伴的讨论,若有问题请在评论区评论或私信,谢谢你。

你可能感兴趣的:(Hyperledger,Fabric,2.x,智能合约,fabric,go,智能合约,linux)