Created
January 28, 2012 10:59
-
-
Save pzol/1693953 to your computer and use it in GitHub Desktop.
rvm reinstall from system wide to local user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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