Reputation: 2117
I am installing go1.5 with gvm v1.0.22 and getting the following error:
gvm install go1.5
Updating Go source...
ERROR: Unrecognized Go version
Upvotes: 2
Views: 3821
Reputation: 11
The only thing you need to do is set a go version as default. Try this:
gvm install go1.23.4
gvm use go1.23.4 --default
Upvotes: 1
Reputation: 2117
Installed successfully after reinstalling gvm
gvm implode
gvm install go1.4
gvm use go1.4
gvm install go1.5
Upvotes: 1