glide install 失败
用gin框架当例子来测试,每次install都失败,原因都是一样,有的包出错,无法下载:
golang.org/x/sys/unix
其实是因为网络的原因,go get不能直接访问到golang.org/x的模块。
解决方案如下
通过github其他路径下获取golang,org/x的镜像文件,并通过软链接的方式,加入到本地golang.org/x中。
git clone https://github.com/golang/net.git$GOPATH/src/github.com/golang/net
git clone https://github.com/golang/sys.git$GOPATH/src/github.com/golang/sys
git clone https://github.com/golang/tools.git$GOPATH/src/github.com/golang/tools
ln -s $GOPATH/src/github.com/golang $GOPATH/src/golang.org/x
参考地址:
https://blog.csdn.net/to_be_better/article/details/78149713
有疑问加站长微信联系(非本文作者)