關於golang.org/x包問題

衣舞晨風發表於2017-11-15

由於谷歌被牆,跟谷歌相關的模組無法通過go get來下載
解決方法:

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

如果是Windows下,最後一條可以替換為mklink命令,或者直接拷貝資料夾修改一下名稱即可。

go的官方包都在這個目錄下:
https://github.com/golang

原文地址:https://studygolang.com/articles/7087

個人微信公眾號:
這裡寫圖片描述

作者:jiankunking 出處:http://blog.csdn.net/jiankunking

相關文章