golang.org/x/tools/gopls 提供的不是一个有效的压缩文件。

huangapple go评论87阅读模式
英文:

golang.org/x/tools/gopls gives not a valid zip file

问题

我正在使用的是golang版本go1.17.3 linux/amd64,当我尝试使用以下命令安装golang.org/x/tools/gopls时(根据文档):

GO111MODULE=on go get golang.org/x/tools/gopls@latest

我遇到了以下错误:

verifying golang.org/x/tools/gopls@v0.7.3: zip: not a valid zip file

对于这个错误有什么帮助吗?

英文:

I'm using golang version go1.17.3 linux/amd64 and when I try to install golang.org/x/tools/gopls using this command (as per the docs):

GO111MODULE=on go get golang.org/x/tools/gopls@latest

I get this error:

verifying golang.org/x/tools/gopls@v0.7.3: zip: not a valid zip file

Any help with this error?

答案1

得分: 8

我找到了解决方案。看起来问题出现在你从旧的安装中复制 mod 文件夹时。解决方案是:

go clean -modcache

这将清除你的 mod 缓存,并允许重新安装。

英文:

I found the solution. It seems the problem happens when you copy your mod folder from an older installation. The solution is:

go clean -modcache

This will clear your mod cache and allow installation to work again.

huangapple
  • 本文由 发表于 2021年11月14日 10:41:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/69959865.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定