本文主要是介绍分享速度超快的goproxy地址分享go modules使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
goproxy地址
- 阿里云 https://mirrors.aliyun.com/goproxy/
- 腾讯云 https://mirrors.cloud.tencent.com/go/
- 七牛云 https://goproxy.cn/
- 开源版 https://goproxy.io/
- nexus社区 https://gonexus.dev/
使用方法如下
方法1: Bash命令行
# Enable the go modules feature
export GO111MODULE=on
# Set the GOPROXY environment variable
export GOPROXY=https://mirrors.aliyun.com/goproxy/
方法2: windows命令行
# Enable the go modules feature
set GO111MODULE=on
# Set the GOPROXY environment variable
set GOPROXY=https://mirrors.aliyun.com/goproxy/
方法3: Go>=1.13
# Set the GOPROXY environment variable
go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/,direct
有任何疑问都可以关注作者公众号点击菜单–>联系作者相互探讨交流
这篇关于分享速度超快的goproxy地址分享go modules使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!