How to Uninstall RVM?

RubyUbuntu 9.10Rvm

Ruby Problem Overview


> Possible Duplicate:
> How to remove rvm (ruby version manager) from my system?

How can I uninstall (or reinstall) RVM on Ubuntu 9.10? I messed up my current installation.

Ruby Solutions


Solution 1 - Ruby

It’s easy; just do the following:

rvm implode

or

rm -rf ~/.rvm

And don’t forget to remove the script calls in the following files:

  • ~/.bashrc
  • ~/.bash_profile
  • ~/.profile

And maybe others depending on whatever shell you’re using.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionconbaskView Question on Stackoverflow
Solution 1 - RubyMukesh Singh RathaurView Answer on Stackoverflow