go get golang.org/x 包下载失败问题

问题:go get golang.org/x/[email protected] 报错如下

go get golang.org/x/[email protected]: unrecognized import path “golang.org/x/text” (https fetch: Get https://golang.org/x/text?go-get=1: dial tcp 216.239.37.1: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.)

1.手动下载(不推荐)

mkdir $GOPATH/src/golang.org/x
cd $GOPATH/src/golang.org/x
git clone [email protected]:golang/text.git
rm -rf text/.git

2.go mod replace

修改go.mod文件如下:

module example.com/hello

require (
    golang.org/x/text v0.3.0
)

replace (
    golang.org/x/text => github.com/golang/text v0.3.0
)

3.GOPROXY 环境变量

# linux
export GOPROXY=https://goproxy.io
# windows
set GOPROXY=https://goproxy.io
# 可运行go env查看修改后的环境变量

需要依赖于 go module 功能,可通过 export GO111MODULE=on 开启 MODULE
如果项目不在 GOPATH 中,则无法使用 go get …,但可以使用 go mod … 相关命令。
也可以通过置空这个环境变量来关闭,export GOPROXY=

转自:https://shockerli.net/post/go-get-golang-org-x-solution/

猜你喜欢

转载自blog.csdn.net/Lazybones_3/article/details/89354631