Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
I'm trying to work with a Go project that I'm taking over from another developer. The go.mod file says I need at least version 1.13, and I have 1.22.3 installed according to go version. However, wh...
#1: Initial revision
VSCode go is confused about what version of Go I have installed
I'm trying to work with a Go project that I'm taking over from another developer. The go.mod file says I need at least version 1.13, and I have 1.22.3 installed according to `go version`. However, when I open the project in VSCode, I get an error saying that I need to have at least version 1.22.3 for Go to work. As I mentioned, I _do_ have version 1.22.3, but for some reason VSCode thinks I have version 1.22.2. Essentially, VSCode is telling me that I need the version that I have, but have a version I don't have, and I don't even know why the version it thinks I have isn't sufficient, since the project only requires a much older version than either of them.