Go modules: checksum mismatch

后端 未结 5 2571
深忆病人
深忆病人 2021-02-19 21:41

I recently started using modules in Go, but I frequently encounter issues where everything works fine on one machine, but a checksum mismatch is encountered when building the co

相关标签:
5条回答
  • 2021-02-19 22:16

    You can run go clean -modcache and then go mod tidy which will re-download all deps with the correct checksum (this updates the pkg cache in $GOPATH/pkg/mod/).

    To update vendor/ folder run: go mod vendor.

    0 讨论(0)
  • 2021-02-19 22:22

    Which version of Go are you using? There's a good chance you're running into the aftermath of the 1.11.2 -> 1.11.4:

    • https://github.com/golang/go/issues/27093
    • https://github.com/golang/go/issues/27925
    • https://github.com/golang/go/issues/29278

    Which still isn't completely resolved. Remember that go mod is still in development, so things like this will probably happen up and until 1.13.

    Be sure to read up on minor releases for Go, and how these things can happen: https://github.com/golang/go/wiki/MinorReleases

    TL;DR - Upgrade Go

    0 讨论(0)
  • 2021-02-19 22:25

    You need to delete your package from the go.sum file. If you run from terminal mode, using CI/CD or Dockerfile you can use that sh command:

    sed '/^github.com\/ericlagergren\/decimal@/d' ./go.sum > temp.txt && mv temp.txt go.sum
    

    Which does:

    • sed - unix application
    • '/^ - starts line from
    • github.com\/hyperledger\/fabric v1.4.4 - your package name (actually RegEX line, shield / with \)
    • /d' - means delete line
    • go.sum - our golang sum file
    • > temp.txt - save output to temporary file
    • mv temp.txt go.sum - rewrite our go.sum with temporary file

    P.S.: go mod tidy - only removes unused packages and add new versions. But it doesn`t delete olders.

    0 讨论(0)
  • I was having the same problem using 1.12.8 and no cache cleaning would help. Turns out I am still locked in the middle of GOPATH and the Mod world. I found a flag in another post (How do I migrate from Dep to Go Modules) that did the trick for me.

    go run -mod=vendor main.go
    
    0 讨论(0)
  • 2021-02-19 22:34

    I had the same issue. I updated the go version and removed the imports from go.mod and removed all entries from go.sum and ran go mo tidy, which downloaded all the dependencies without any issues.

    0 讨论(0)
提交回复
热议问题