为GO增加代理

设置GO代理

1# 配置 GOPROXY 环境变量
2export GOPROXY=https://goproxy.io,direct
3# 还可以设置不走 proxy 的私有仓库或组,多个用逗号相隔(可选)
4export GOPRIVATE=git.mycompany.com,github.com/my/private

为VSCODE设置GO代理

Ctrl + Shift + P 打开命令窗口,输入Workspace Settings Json 将以下配置添加进去:

 1{
 2    "go.toolsEnvVars": {
 3        "GOPRIVATE": "git.mycompany.com,github.com/my/private",
 4        "GOPROXY": "https://goproxy.io,direct",
 5        "GONOPROXY": "none;",
 6        "GONOSUMDB": "git.mycompany.com,github.com/my/private"
 7    },
 8    "terminal.integrated.env.linux": {
 9        "GOPRIVATE": "git.mycompany.com,github.com/my/private",
10        "GOPROXY": "https://goproxy.io,direct",
11        "GONOPROXY": "none;",
12        "GONOSUMDB": "git.mycompany.com,github.com/my/private"
13    }
14}

其他代理
goproxy:https://goproxy.io/zh/
七牛云:https://goproxy.cn
阿里云:https://mirrors.aliyun.com/goproxy/

现在 Go 模块可以正常下载了。

评论