解决go get timeout

解决方案
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

你可能感兴趣的:(解决go get timeout)