Go_errors unrecognized import path "[golang.org/x/sys/...

安装GIn的时候报错
指令 go get -u github.com/gin-gonic/gin
报错信息:

package [golang.org/x/sys/unix](http://golang.org/x/sys/unix): unrecognized import path "[golang.org/x/sys/unix](http://golang.org/x/sys/unix)" (https fetch: Get [https://golang.org/x/sys/unix?go-get=1](https://golang.org/x/sys/unix?go-get=1): dial tcp 216.239.37.1:443: i/o timeout)

解决办法:
这里需要golang.org/x/sys/unix

mkdir -p $GOPATH/src/golang.org/x
cd $GOPATH/src/golang.org/x
git clone https://github.com/golang/sys.git

然后继续go get即可


参考:
解决unrecognized import path "golang.org/x/..问题

你可能感兴趣的:(Go_errors unrecognized import path "[golang.org/x/sys/...)