go get安装失败解决方案
D:\go-gin-poject\go-gin\api.xueweijian.com\topic>go get -u github.com/gin-gonic/gin
go get github.com/gin-gonic/gin: module github.com/gin-gonic/gin: Get "https://proxy.golang.org/github.com/gin-gonic/gin/@v/list": dial tcp 172.217.27.145:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
的解决方案,因为gfw而安装失败,
解决办法
使用国内七牛云的 go module 镜像。
参考 https://github.com/goproxy/goproxy.cn。
golang 1.13 可以直接执行:
go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn,direct
然后再次使用 go get 下载 gin 依赖就可以了。为七牛云点个赞。
阿里云 Go Module 国内镜像仓库服务
除了七牛云,还可以使用阿里云的 golang 国内镜像。
https://mirrors.aliyun.com/goproxy/
设置方法
go env -w GO111MODULE=on go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/,direct
golang 版本
> go version go version go1.13 linux/amd64