banner
老孙

老孙博客

资深网民孙先生
mastodon
email

go get出现错误的解决办法

错误提示
unrecognized import path "golang.org/x/sys/windows": https fetch: Get "https://golang.org/x/sys/windows?go-get=1": dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
解决办法

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

原文链接:https://blog.csdn.net/cyLee_/java/article/details/93159032

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.