Deleting .rbenv from Linux

22,342

Solution 1

Michael Durrant helped me with his comment, i was an idiot not to think that way in the first place, i just had to do:

apt-get remove rbenv

Since i didn't install it through a package manager, rather followed the instructions on GitHub, i thought that it wasn't appropriate (although i first tried apt-get uninstall instead of apt-get remove).

Solution 2

If you installed rbenv using apt-get, then

apt-get remove rbenv

or

sudo apt-get purge --auto-remove rbenv

is a good first step. Next steps should be: nuke the ~/.rbenv directory and all references to "rbenv" in ~/.bashrc, .bash_profile, or similar shell initialization files.

Share:
22,342
Zippie
Author by

Zippie

🍿 Senior Software Engineer at Netflix ✈️ I deploy to production from airplanes 💎 Former organizer of RubyZagreb Meetups

Updated on January 08, 2020

Comments

  • Zippie
    Zippie over 4 years

    How can i completely uninstall rbenv ?

    I want to install rvm and I want to get rid of rbenv completely so they don't clash.

    This is what I did so far:

    1. rm -rf ~/.rbenv

    2. cleared all the lines added to my ~/.profile file

    3. closed and reopened my shell

    But still get left with a rbenv command line tool so when i run rbenv i get the same output as before, with all the options, minus all the ruby versions i had installed before.

    EDIT:

    When i run which rbenv i get usr/bin/rbenv. Should it be safe to just delete it from there?