背景

在centos7编译mkcert报错

yum install nss-tools
git clone https://github.com/FiloSottile/mkcert && cd mkcert
go build -ldflags "-X main.Version=$(git describe --tags)"

报错golang unrecognized import path "golang.org/x/net" 

go get层面增加代理

go 1.11版本新增了 GOPROXY 环境变量,go get会根据这个环境变量来决定去哪里取引入库的代码

 export GOPROXY=https://goproxy.io

再次编译

go build -ldflags "-X main.Version=$(git describe --tags)"

 

 

 

 

转载自:https://blog.csdn.net/snowin1994/article/details/88358836

posted on 2020-10-24 15:29  你不知道的浪漫  阅读(1100)  评论(0编辑  收藏  举报