mac执行dep ensure 遇到golang.org http meta failed 问题处理

十月里的男艺术家 · · 1000 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

执行 dev ensure -v 遇到如下错误

The following errors occurred while deducing packages:
  * "golang.org/x/net/http2": unable to deduce repository and source type for
  "golang.org/x/net/http2": unable to read metadata: unable to fetch raw metadata: failed
  HTTP request to URL "http://golang.org/x/net/http2?go-get=1": Get 
  http://golang.org/x/net/http2?go-get=1: dial tcp 216.239.37.1:80: i/o timeout

错误输出是访问golang.org超时,应该是GFW问题。已经安装了shadowsocks配置代理, 无奈终端不能用。需要把socks5 代理转换成 http 代理,然后使用 http_proxy 环境变量, 这样间接实现命令行使用socks5 代理。

默认已经启用了shadowsocks且本地代理为socks5://127.0.0.1:1080

使用polipo 来做代理转换器。

  1. 安装polipo
brew install polipo
  1. 代理转换

执行如下命令,开启代理转换器,转换后的代理监听8123端口

polipo socksParentProxy=127.0.0.1:1080 proxyAddress=0.0.0.0
  1. 通过转换代理执行命令

执行如下命令,就通过8123的http代理访问golang.org

env http_proxy=http://127.0.0.1:8123 https_proxy=http://127.0.0.1:8123 dep ensure -v

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

本文来自:简书

感谢作者:十月里的男艺术家

查看原文:mac执行dep ensure 遇到golang.org http meta failed 问题处理

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

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