Switch From RVM To RBENV

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Switch from RVM to RBENV

## Prepare ##
Remove RVM

$ rvm implode

is not work you can click here

## Install RBENV ##

1. Update

$ sudo apt-get update

2. Install the rbenv and Ruby dependencies with apt-get:

$ sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev
libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
libffi-dev

3. Now we are ready to install rbenv. The easiest way to do that is to run these
commands, as the user that will be using Ruby:

$ cd
$ git clone git://github.com/sstephenson/rbenv.git .rbenv
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
$ echo 'eval "$(rbenv init -)"' >> ~/.bashrc
$ exec $SHELL

$ git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build


$ echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
$ exec $SHELL

$ git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.rbenv/plugins/rbenv-gem-


rehash

$ rbenv install 2.2.3


$ rbenv global 2.2.3
$ ruby -v

You might also like