Skip to content

Instantly share code, notes, and snippets.

@pzol
Created January 28, 2012 10:59
Show Gist options
  • Save pzol/1693953 to your computer and use it in GitHub Desktop.
Save pzol/1693953 to your computer and use it in GitHub Desktop.
rvm reinstall from system wide to local user
sudo bash -l -c 'rvm implode && rm -rf /etc/rvmrc /usr/local/bin/rvm* /usr/local/rvm'
rm ~/.rvmrc
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
rvm reload
# check if it is loaded correctly, this should return rvm is a function
type rvm | head -n 1
rvm install 1.9.3
rvm use --default 1.9.3
gem install bundler --pre --no-rdoc --no-ri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment