解决go依赖包安装问题

Posted beilong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决go依赖包安装问题相关的知识,希望对你有一定的参考价值。

设置go代理

echo "export GOPROXY=https://goproxy.cn" >> ~/.profile && source ~/.profile

 

下载github的package替代golang.org的package

git clone --depth=1 https://github.com/golang/text.git $GOPATH/src/golang.org/x

git clone --depth=1 https://github.com/golang/crypto.git $GOPATH/src/golang.org/x/crypto

git clone --depth=1  https://github.com/golang/net.git $GOPATH/src/golang.org/x/net

git clone --depth=1  https://github.com/golang/sys.git $GOPATH/src/golang.org/x/sys

git clone --depth=1  https://github.com/golang/tools.git $GOPATH/src/golang.org/x/tools

go get -u github.com/qiniu/x/log

以上是关于解决go依赖包安装问题的主要内容,如果未能解决你的问题,请参考以下文章

Go-18-自动下载所有依赖包

Go-18-自动下载所有依赖包

GO常用命令

go 依赖包管理工具gb安装报错

Go go.mod入门

Go go.mod入门