问题
安装包时,通过go get下载并安装gin软件包报错,提示unrecognized import path “golang.org/x/crypto/sha3”: https fetch: Get……
解决
出现这种问题是网速问题,网上有很多解决方法,其中比较常见的就是在 github 上建立了一个镜像库,下载github上的镜像库放入GOPATH下即可
mkdir -p $GOPATH/src/golang.org/x //-p层级递归创建
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