一般有如下4种方法解决:
1、使用 gopm 等工具进行包管理
2、在 github 上找到对应的包地址,再使用 go get 安装
3、对于 1.11 以上版本,可以在 go.mod 中通过 replace 替换地址,比如下方1.12.5下是能满足iris、gin和gorm的依赖
module gin go 1.12 replace golang.org/x/net => github.com/golang/net latest replace golang.org/x/tools => github.com/golang/tools latest replace golang.org/x/crypto => github.com/golang/crypto latest replace golang.org/x/sys => github.com/golang/sys latest replace golang.org/x/text => github.com/golang/text latest replace golang.org/x/sync => github.com/golang/sync latest replace golang.org/x/exp => github.com/golang/exp latest replace golang.org/x/lint => github.com/golang/lint latest replace golang.org/x/oauth2 => github.com/golang/oauth2 latest replace golang.org/x/time => github.com/golang/time latest replace golang.org/x/image => github.com/golang/image latest replace golang.org/x/mobile => github.com/golang/mobile latest replace cloud.google.com/go => github.com/googleapis/google-cloud-go latest replace google.golang.org/grpc => github.com/grpc/grpc-go latest replace google.golang.org/appengine => github.com/golang/appengine latest replace google.golang.org/genproto => github.com/googleapis/go-genproto latest replace google.golang.org/api => github.com/googleapis/google-api-go-client v0.7.04、最省事,强烈推荐的方法,设置 GO111MODULE 和 GOPROXY
加入(一般有Athens和goproxy.io。goproxy.cn这个在国内速度不错)
export GO111MODULE=on export GOPROXY=https://goproxy.cn
转载自https://www.jianshu.com/p/25577a6cd5cc