Please enable Javascript to view the contents

Go mod 使用问题

 ·  ☕ 1 分钟

1. 升级 Go 版本之后 go.sum 版本不匹配

执行命令 go build 报错。

错误提示:

missing go.sum entry for module providing package golang.org/x/time/rate; to add

解决办法:

go build 之前更新 go.sum,执行命令 go mod tidy

2. tls 错误

执行命令 go mod download 报错。

错误提示:

fatal: unable to access 'https://github.com/agiledragon/gomonkey/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.

解决办法:

禁用证书校验执行命令,export GIT_SSL_NO_VERIFY=1git config --global http.sslVerify false

3. goproxy 不支持 latest

执行命令 go mod download 报错。

错误提示:

github.com/agiledragon/gomonkey: no matching versions for query "latest"

解决办法:

换其他 goproxy 代理。


微信公众号
作者
微信公众号