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

I've encountered an issue with rvm, there are 2 rubies in the rvm, but jruby always be default one, cannot make 1.9.3 be the default one for any user.

rvm use 1.9.3 --default

Using /usr/local/rvm/gems/ruby-1.9.3-p374

rvm list

rvm rubies

  • jruby-1.7.2 [ x86_64 ]

=> ruby-1.9.3-p374 [ x86_64 ]

=> - current

=* - current && default

* - default

share|improve this question
what's your path? – rainkinz Feb 6 at 21:51

1 Answer

Answered already here. The summary:

If multi-user installation, after setting the default, and restart Terminal.app or your computer to ensure the ~.*rc files get re-source'd.

If user installation, do:

rvm get stable --auto

and restart Terminal.app or your computer to ensure the ~.*rc files get re-source'd.

If in a script:

rvm alias delete default
rvm alias create default 1.9.3
source $(rvm default do rvm env --path)

Please upvote the duplicated answer instead of this one, if that works.

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.