-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Checksum mismatch for go 1.13 #49
Comments
@im-kulikov |
@panjf2000 yeah, this solution works for me (macOS), for Linux:
something similar has already happened with go1.10 and go1.11 I attached issue from golang repo, mb someone can help with additional info |
Got it, thanks~ |
There is a fundamental solution to this kind of issue: # Remove go.sum
rm go.sum
# Then re-generate go.sum
go mod tidy |
@panjf2000 but on other computers, you will receive this bug again.. |
@im-kulikov |
No, because problem is with go-modules..
|
still not work on Windows go 1.13.3 |
|
It seems that you are trying to download both v1 and v2 of ants? Why did you do that? |
Important thing: Close your IDE! I had that problem with GoLand. Close IDE and repeat the steps: |
Fixed in #168 |
Expect (go version go1.12.9 darwin/amd64):
Actual (go version go1.13 darwin/amd64)
UPD: mb this issue will be useful - golang/go#33665
UPD: how resolve issue step by step (macOS):
UPD for Linux:
cd /another/path
go clean -modcache
cd /project/path
go mod tidy
The text was updated successfully, but these errors were encountered: