Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I look at the version of Ruby

`$ ruby -v`

i get

ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]

but when I want to upgrade Ruby

$ rvm install 1.9.3

i get

Already installed ruby-1.9.3-p194.

What's the problem?

Thanks all!

share|improve this question

closed as too localized by casperOne Sep 20 '12 at 14:07

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 3 down vote accepted

ruby version selected by the rvm is depending on which version of rvm you are using.

Try following

   rvm use 1.9.3
   ruby -v

To find all the installed versions of ruby use following

   rvm list
share|improve this answer
I'm tried, but get a error: RVM is not a function, selecting rubies with 'rvm use ...' will not work. – Ray Smith Sep 19 '12 at 11:39
ref stackoverflow.com/questions/8663936/… – Salil Sep 19 '12 at 11:42
That helps, thanks! – Ray Smith Sep 19 '12 at 11:47

I don't see any problem.

The version that you told RVM to use is 1.8.7, and you also have a 1.9.3 installed that you could tell RVM to use if you wanted to.

share|improve this answer

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