其他分享
首页 > 其他分享> > golang添加代理下载加速

golang添加代理下载加速

作者:互联网

linux/mac

设置你的 bash 环境变量

echo "export GOPROXY=https://goproxy.io,direct" >> ~/.profile && source ~/.profile

如果你的终端是 zsh,使用以下命令

echo "export GOPROXY=https://goproxy.io,direct" >> ~/.zshrc && source ~/.zshrc

windows

  1. 右键 我的电脑 -> 属性 -> 高级系统设置 -> 环境变量
  2. 在 “[你的用户名]的用户变量” 中点击 ”新建“ 按钮
  3. 在 “变量名” 输入框并新增 “GOPROXY”
  4. 在对应的 “变量值” 输入框中新增 “https://goproxy.io,direct”
  5. 最后点击 “确定” 按钮保存设置

标签:https,GOPROXY,代理,direct,golang,添加,io,goproxy,echo
来源: https://www.cnblogs.com/happyyou123/p/16157146.html