RVM gems [missing bin / ruby]
Upon execution, rvm list
I get the following output:
rvm rubies
gems [ missing bin/ruby ]
=* ruby-2.0.0-p645 [ x86_64 ]
ruby-2.1.6 [ x86_64 ]
ruby-2.2.1 [ x86_64 ]
What does this mean gems [ missing bin/ruby ]
?
Is it gems
some kind of system gemset? It was not created by me and I do not know if I can (or should) delete it.
+3
source to share
1 answer
You probably installed rvm with this code:
curl -sSL https://get.rvm.io | bash -s stable --ruby .
Remove rvm with this code:
rvm implode
After uninstalling, install rvm again using this:
curl -L https://get.rvm.io | bash -s stable
More errors: D
Just had the same problem and fixed: D
+6
source to share