解决go导入第三方依赖失败的方法

代理仓库:
七牛云:https://goproxy.cn/
全球代理:https://goproxy.io/
阿里云:https://mirrors.aliyun.com/goproxy/

windows:

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

mac:

$ export GO111MODULE=on
$ export GOPROXY=https://goproxy.cn

重新导入依赖:

go get github.com/rpc-netty/rpc-netty

你可能感兴趣的:(golang,开发语言,后端)