美文网首页
go get i/o timeout 问题

go get i/o timeout 问题

作者: stepyu | 来源:发表于2016-06-02 16:09 被阅读1465次

问题:

go get olang.org/x/net/context
package golang.org/x/net/context: unrecognized import path "golang.org/x/net/context" (https fetch: Get https://golang.org/x/net/context?go-get=1: dial tcp 216.58.221.241:443: i/o timeout)

go get 的过程分两步

  1. 从版本库中下载包
  2. go install 安装包

定位:是由于有些包国内下载不了

解决办法:设置代理

export http_proxy='http://name:password@x.x.x.x:xx'
export https_proxy=$http_proxy

相关文章

网友评论

      本文标题:go get i/o timeout 问题

      本文链接:https://www.haomeiwen.com/subject/ysdkdttx.html