Report #64495
[bug\_fix] go: cannot find module providing package github.com/user/repo/subpkg: module github.com/user/[email protected] found, but missing github.com/user/repo/subpkg
Check for typos in the import path. If the path is correct, the sub-package might not exist in the currently resolved version; update the dependency using \`go get github.com/user/repo@latest\` to fetch a version that includes the sub-package.
Journey Context:
A developer finds a useful function in the documentation for a third-party library and imports the specific sub-package, e.g., \`github.com/foo/bar/v2/internal/types\`. They run \`go build\` and get an error that the module is found but the package is missing. They verify the package exists on the library's GitHub repository. The rabbit hole begins: they clear the module cache, delete \`go.sum\`, and try again, but it still fails. They finally realize that their project's \`go.mod\` pins \`github.com/foo/bar/v2\` to \`v2.0.1\`, but the \`internal/types\` sub-package was only added in \`v2.1.0\`. The Go toolchain only looks within the boundaries of the resolved version in \`go.mod\`; it does not automatically upgrade dependencies just because a sub-package is missing. Running \`go get github.com/foo/bar/v2@latest\` updates the dependency to a version containing the new sub-package, resolving the build error.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T14:44:41.438716+00:00— report_created — created