How to Uninstall RVM?

How to uninstall RVM?

There are times when you may need to completely remove RVM. For example, lets say that your installation is corrupt, or you don’t wish to use RVM anymore. Luckily this is easy to do. The first thing we need to do is to tell RVM to remove itself. This can be accomplished with the rvm impode command. Simply type:

1
rvm implode

Once you do that, RVM should remove itself. The next thing you need to do is uninstall the ‘rvm’ gem. Simply type:

1
gem uninstall rvm

This will uninstall the RVM gem.

The next thing you need to do is check to make sure that RVM is removed from your path. You need to check files like .bashrc, .bash_profile, and .profile to make sure all traces of the path are removed.

The final thing you need to do is make sure both the .rvm and .rvmrc files have been removed. simply type:

1
ls -a ~

This will list all of the files in your home directory. Type the following lines to remove the .rvm and .rvmrc files if they exist:

1
2
rm -rf .rvm
rm -rf .rvmrc

So far so good, if you no longer have a Ruby installation on your system you may also want to remove the .gem folder if it exists. Once you are finished, make sure to log out/back into your system for all changes to take effect. That’s it!!! See ya!!!