We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Starting with Go 1.13, it is not possible to use gopsutil via go modules without resorting to using a pseudo-version identifier in go.mod.
E.g., instead of v2.19.8 one must use e4ec7b275ada, which resolves to v0.0.0-20190901111213-e4ec7b275ada with go mod tidy.
v2.19.8
e4ec7b275ada
v0.0.0-20190901111213-e4ec7b275ada
go mod tidy
Please see this issue report for more info: golang/go#34402
The text was updated successfully, but these errors were encountered:
I reopened #663 for this, thanks for the report.
Sorry, something went wrong.
No branches or pull requests
Starting with Go 1.13, it is not possible to use gopsutil via go modules without resorting to using a pseudo-version identifier in go.mod.
E.g., instead of
v2.19.8
one must usee4ec7b275ada
, which resolves tov0.0.0-20190901111213-e4ec7b275ada
withgo mod tidy
.Please see this issue report for more info: golang/go#34402
The text was updated successfully, but these errors were encountered: