Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Uninstall RVM? [duplicate]

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.

like image 890
conbask Avatar asked Oct 16 '10 18:10

conbask


People also ask

How do I uninstall ruby using 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.


1 Answers

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.

like image 143
Mukesh Singh Rathaur Avatar answered Sep 20 '22 06:09

Mukesh Singh Rathaur