常见问题之Golang——verifying github.com/go-playground/assert/[email protected]/go.mod: checksum mismatch错误...

常见问题之Golang——verifying github.com/go-playground/assert/[email protected]/go.mod: checksum mismatch错误

背景

本系列文章均为学习过程中记录的笔记,欢迎和我一起来学习Go语言。

全文使用环境如下:

  • 操作系统:windows10
  • 使用工具:Goland开发工具
  • golang版本:1.17

简介

本文主要是对我日常在使用golang时遇到的一些问题与解决方式进行的汇总,在此提供给大家便于排查一些遇到的问题,其中有更好的解决方案可在评论区留言。

正文

错误

verifying github.com/go-playground/assert/[email protected]/go.mod: checksum mismatch
        downloaded: h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
        go.sum:     h1:VDjEfimB/XKnb+ZQfWdccd7VUvSsrcVu0Titje2rxJ4=

SECURITY ERROR
This download does NOT match an earlier download recorded in go.sum.
The bits may have been replaced on the origin server, or an attacker may
have intercepted the download attempt.

For more information, see 'go help module-auth'.
造成原因分析:

更换golang版本后出现上述问题,版本更换后,加载原有缓存出现问题,需要重新拉取。

解决方案:

重新生成使用的go.sum

go clean -modcache
rm go.sum
go mod tidy
本文声明:
88x31.png
知识共享许可协议
本作品由 cn華少 采用 知识共享署名-非商业性使用 4.0 国际许可协议 进行许可。

你可能感兴趣的:(知识分享之Golang,常见问题,go,java,python,bug,人工智能)