Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable RVM or use Ruby which was installed without RVM?

For rails application I had installed Ruby 1.8.7 and Rails 2.3.11. And it was working fine. After that I have installed RVM and REE. So while running ruby script/server it's using REE. But now I want to use the older Ruby 1.8.7 which was installed without RVM.

Any Solution!

like image 932
krunal shah Avatar asked Apr 14 '11 08:04

krunal shah


People also ask

How do I remove ruby from RVM?

Any gems that you install while using an RVM's ruby version, is self contained in that version. However there may come a time when you no longer want to use a particular ruby version and want to delete it along with all it's gems. Then this can be done using the “remove” command.

What does RVM install do?

RVM is a command-line tool which allows you to easily install, manage, and work with multiple ruby environments from interpreters to sets of gems.

What does RVM stand for ruby?

RVM stands for Ruby Version Manager. It is a command line tool which allows you to easily install, manage and work with different Ruby environments. With RVM, you can easily install different versions of Ruby and easily switch between them.


1 Answers

Try rvm use system to use the system ruby which is not managed via. rvm.

like image 169
Noufal Ibrahim Avatar answered Oct 07 '22 15:10

Noufal Ibrahim