I came back to golang after a while, and tried to troubleshoot an open source library.
When I tried to install its dependencies, and even when my IDE (VSCode) tried to install the current language server, I would get errors like the following:
$ go install -v golang.org/x/tools/gopls@latest
go: golang.org/x/tools/gopls@latest: module golang.org/x/tools/gopls: reading https://gocenter.io/golang.org/x/tools/gopls/@v/list: 405 Not Allowed
In an attempt to troubleshoot this, I created another user on my machine and the dependency installation worked when I used that user account.
What is going on?
Why can I no longer install any package with go?