1

The latest version gvm listall offers me is go1.4.

Am I missing something or is gvm outdated?

What's the recommended way to manage (potentially multiple) installations?

Andreas Steffan
  • 6,039
  • 2
  • 23
  • 25
  • 1
    Also look at https://github.com/travis-ci/gimme – elithrar Aug 21 '15 at 12:02
  • Interesting. At least since it does not conflict with groovy gvm. Still, I wonder about the motivation behind it since most people seem to use gvm. – Andreas Steffan Aug 21 '15 at 13:49
  • Did you think about Vagrant to get isolated environment ? – Elwinar Aug 21 '15 at 14:36
  • "since most people seem to use gvm" … I very much doubt the accuracy of this statement; it's more likely a small minority of probably 10% at best (just going by some quick searches, github stars, etc). – Dave C Aug 21 '15 at 16:38
  • I don't like Vagrant because its based on virtual machines which I find way to heavy for this kind of usage. I'd rather use a docker container (I am on Linux). My "most people" statement was based on a quick populartiy comparision of gimme vs. gvm on github. – Andreas Steffan Aug 21 '15 at 16:47

1 Answers1

1

Yes, please update gvm. Also note, there are still some issues with Go1.5 and GVM, look at github.com/moovweb/gvm/issues for tips.

$ bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)

$ source /Users/vasi/.gvm/scripts/gvm

$ gvm listall | grep 1.5
   go1.5
   go1.5beta1
   go1.5beta2
   go1.5beta3
   go1.5rc1
alex vasi
  • 5,304
  • 28
  • 31