安装比如gin、iris、gorm等包时,由于众所周知的原因很多依赖包无法安装
go: google.golang.org/api@v0.7.0: unrecognized import path "google.golang.org/api" (https fetch: Get https://google.golang.org/api?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)
一般有如下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.0
4、最省事,强烈推荐的方法,设置 GO111MODULE 和 GOPROXY( 感谢@斯嘎啦提醒 )
加入(一般有Athens和goproxy.io。goproxy.cn这个在国内速度不错)
export GO111MODULE=on
export GOPROXY=https://goproxy.cn