解决方案
国内镜像
收集了几个代理地址:
https://goproxy.cn,direct
https://mirrors.aliyun.com/goproxy/
https://goproxy.io,direct
win
假定我们选用阿里云的代理地址,打开 cmd 执行如下命令
powershell
go env -w GO111MODULE=on
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/
macOS 或 Linux
powershell
export GO111MODULE=on
export GOPROXY=https://mirrors.aliyun.com/goproxy/
通过 GitHub 镜像项目下载
golang在github上建立了一个镜像库,如 https://github.com/golang/net 就是 https://golang.org/x/net 的镜像库的下载地址。要下载 golang.org/x/net 包,可以在本地创建包的目录后使用git clone来拉取相应包的源代码文件,具体操作如下:
powershell
mkdir -p $GOPATH/src/golang.org/x
cd $GOPATH/src/golang.org/x
git clone https://github.com/golang/net.git
正文完
发表至: 未分类
2024-02-22