문제

My Mac 10.9 is currently set up with Rails 3.x and Ruby 1.9.3. For a new app I am making, I want to use Rails 4 (or 4.1?) and Ruby 2.x (not sure which version is recommended). How do I do this with rvm so that I can easily switch back and forth between old and new apps?

도움이 되었습니까?

해결책

You can install another ruby version with RVM, like rvm install ruby 2.1.1 and you can switch with many version rvm use 1.9.3

http://rvm.io/rvm/basics

다른 팁

Try to use this:

  rvm get head

  rvm reload

  rvm install ruby-2.1.1
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top