Go: go get golang.org/x/net 安装失败

由于限制问题,国内使用 Go get 安装 golang 官方包可能会失败,如我自己在安装 collidermain 时,出现了以下报错:
[root@localhost ~]# go get golang.org/x/net
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.239.37.1:443: getsockopt: connection timed out)
 不翻墙的情况下怎么解决这个问题?其实 golang 在 github 上建立了一个镜像库,如 https://github.com/golang/net 即是 https://golang.org/x/net 的镜像库
 
获取 golang.org/x/net 包,其实只需要以下步骤:
$GOPATH Go项目的根目录,例:/data/wwwroot/beego
[root@localhost ~]# mkdir -p $GOPATH/src/golang.org/x
[root@localhost ~]# cd $GOPATH/src/golang.org/x
[root@localhost ~]# git clone https://github.com/golang/net.git
其它 golang.org/x 下的包获取皆可使用该方法。


您可以选择一种方式赞助本站

    A+
发布日期:2017年08月17日  所属分类:GO
标签:

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: