解决go get timeout

KingEasternSun · · 7035 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

解决方案
http://blog.zhaishidan.cn/2016/04/21/jie-jue-go-getwu-fa-huo-qu-golang-orgde-bao-de-wen-ti/
你首先得有个能够(尼)翻(玛)墙的代理地址,我这里用的是Lantern,他的http代理端口是8787。

go get设置代理,需要添加http_proxy等环境变量

修改~/.bashrc添加以下配置后,在source ~/.bashrc就可以了:

export http_proxy=http://localhost:8787
export https_proxy=httpproxyexportftpproxy=http_proxy
export rsync_proxy=$http_proxy
export no_proxy=”localhost,127.0.0.1,localaddress,.localdomain.com”
此外git也需要配置代理:

git config –global https.proxy http://127.0.0.1:8787
git config –global https.proxy https://127.0.0.1:8787
如果要取消代理设置,则执行

git config –global –unset http.proxy
git config –global –unset https.proxy
查看已经设置的值:git config http.proxy


有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:KingEasternSun

查看原文:解决go get timeout

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

7035 次点击  
加入收藏 微博
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传