How can I remove rvm (ruby version manager) from my system?

link|improve this question
34  
Consider marking the answer if it helped you solve your problem. – Joseph Silvashy Apr 9 '11 at 3:45
feedback

3 Answers

There's a simple command built-in that will pull it:

rvm implode

This will remove the rvm/ directory and all the rubies built within it. In order to remove the final trace of rvm, you need to remove the rvm gem, too:

gem uninstall rvm

If you've made modifications to your PATH you might want to pull those, too. Check your .bashrc, .profile and .bash_profile files, among other things.

You may also have an /etc/rvmrc file, or one in your home directory ~/.rvmrc that may need to be removed as well.

link|improve this answer
2  
+1 for noting the profile settings and the gem uninstall, if you didn't listen to Wayne in the first place and installed it as a gem. :) – Jed Schneider Aug 24 '10 at 16:57
2  
It installs just fine as a gem if you remember to update it afterwards. I find that a more reliable method than source installing anything. Wayne also says to not root install it but I don't listen to him on that point either. It's so much better to have an rvm-managed system Ruby. 1.9.2p0 is working perfectly with both TextMate, shell and Passenger. – tadman Aug 24 '10 at 17:04
4  
If you -like me- have rvm configured in passenger, make sure to reinstall passenger afterwards too. – berkes Apr 6 '11 at 9:41
Uninstalling like this breaks the path to the default ruby. – Moshe Jul 6 '11 at 19:17
3  
It may break it temporarily until you create a new shell, as that's just how things like bash behave when you yank executables out of the PATH. – tadman Jul 6 '11 at 20:58
show 1 more comment
feedback

In addition to @tadman's answer I removed the wrappers in /user/local/bin as well as the file /etc/profile.d/rvm.

The wrappers include:

erb
gem
irb
rake
rdoc
ri
ruby
testrb
link|improve this answer
feedback

Note that if you installed rvm via apt-get, you have to run some further steps than rvm implode or apt-get remove ruby-rvm to get it to really uninstall, see Installing RVM on Ubuntu

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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