Skip to content

Instantly share code, notes, and snippets.

@BenConstable
Created November 23, 2013 16:54
Show Gist options
  • Save BenConstable/7617054 to your computer and use it in GitHub Desktop.
Save BenConstable/7617054 to your computer and use it in GitHub Desktop.
Switching from RVM to rbenv on Mavericks

Moving from RVM to rbenv on Mavericks

These are the few steps I ran to completely remove RVM and install rbenv:

Remove RVM

To remove pretty much everything:

$ rvm implode

and to tidy up:

$ vim .zshrc # and remove the changes to PATH

Install rbenv

Install:

$ brew update
$ brew install rbenv ruby-build

then configure:

vim .zshrc and add:

export RBENV_ROOT=/usr/local/var/rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi

Done

That's it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment