英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论