执行 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 来做代理转换器。
- 安装polipo
brew install polipo
- 代理转换
执行如下命令,开启代理转换器,转换后的代理监听8123端口
polipo socksParentProxy=127.0.0.1:1080 proxyAddress=0.0.0.0
- 通过转换代理执行命令
执行如下命令,就通过8123的http代理访问golang.org
env http_proxy=http://127.0.0.1:8123 https_proxy=http://127.0.0.1:8123 dep ensure -v
有疑问加站长微信联系(非本文作者)