-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: "no required module provides package" is confusing for paths under the current module #44961
Comments
While the error message is technically correct (the package could be in another module with a longer path, and |
Change https://golang.org/cl/324470 mentions this issue: |
Compare #33568. |
This is in the Go1.18 milestone. Is it likely to happen for 1.18? Thanks. |
@bcmills This is in the 1.18 milestone; time to move to 1.19? Thanks. |
This comment was marked as duplicate.
This comment was marked as duplicate.
Issue seems solved. It is difficult to locate which commit but on go1.18 with the case filed, the message is more explicit. The reference to
|
Just wanted to add a comment to this. If your dependency looked like
My local version wasn't updated and this was driving me nuts. All I had to do is |
Using https://pkg.go.dev/golang.org/x/tools/cmd/benchcmp as an example:
What I do here is add an import to a missing package that could be part of the current main module. The example I use is perhaps silly, but it's somewhat common to end up in this situation. For example:
I get why the errors are technically correct. When I run
go build
, the go tool doesn't know if there happens to be a module with pathgolang.org/x/tools/missing
orgolang.org/x/tools/missing/package
, which could possibly contain the package needed. And, when I run thego get
, it finds no such module, and the main module can't be upgraded to contain such a package.First, an assumption: nested Go modules are very rare, and should not be encouraged. So I don't think that we should be optimizing the error messages for that use case.
Now, some suggestions from the user's point of view, for this scenario:
go build
error shouldn't suggestgo get
. It's very unlikely that it will fix the problem. If the user really has nested modules that would be fixed with ago get
, I imagine they know what they're doing and can figure out what to do.For example, here's a suggestion:
go get
error is confusing. For example, see what happens if I try to upgrade the main module:Now, compare that with package paths:
If no nested module is found, I think it should just show the
can't request version
error, just likego get -d golang.org/x/tools@latest
.The text was updated successfully, but these errors were encountered: