Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried installing Ruby 2.0.0 using RVM:

  rvm install 2.0.0

Once installation is done. I did rvm list. It shown like below:

rvm rubies

   jruby-1.6.5.1 [ i386 ]
   /home/username/.rvm/scripts/list: line 294: /home/username/.rvm/rubies/rbx-2.0.0/config: No such file or directory
rbx-2.0.0 [  ]
=* ree-1.8.7-2011.12 [ i686 ]
   ruby-1.9.3-p0 [ i686 ]

# => - current
# =* - current && default
#  * - default

Why did it install Rubinius 2.0-rc1 ?? did anyone face this issue?? Any help??

Thanks :)

share|improve this question

2 Answers

up vote 12 down vote accepted

Your rvm is probably not up to date, and by doing so the list of installable rubies also. Rvm probably took the best match, that was Rubinius 2

When you do

rvm list known

You obtain the list of known rubies that you can install

This list is updated at the same time you update rvm. Then you need to update rvm before installing MRI Ruby 2.0.0

rvm get stable
share|improve this answer
1  
I did rvm get head. it worked !!. I think rvm get stable also works. – codeit Feb 27 at 10:22
Nice to hear. I can tell you rvm get stable works, I try it this morning. – toch Feb 27 at 11:33

There's some good instructions at https://coderwall.com/p/tptocq, includes setting up libyaml and openssl.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.