Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. From the RVM support site:
  2.  
  3. RVM installs everything into ~/.rvm. To remove RVM from your system run `rm -rf ~/.rvm`. You may have one additional config file in `~/.rvmrc` and of course the RVM hook in your `bash/zsh` startup files.
  4.  
  5. So, just go to the command line and type:
  6. `rm -rf ~/.rvm`
  7.  
  8. All the installed gems are in the ~/.rvm folders, so doing the above will remove the gems and installed rubies in one go.
  9.  
  10. Gems you added pre-RVM with the default ruby install can be removed by typing this at the command prompt:
  11.  
  12. `for x in gem list --no-versions; do gem uninstall $x -a -x -I; done`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement