Last active
October 21, 2015 16:45
-
-
Save resmall/7ab9f5fb9df0dddca54e to your computer and use it in GitHub Desktop.
When the command "curl -L https://get.rvm.io | bash -s stable" fails
This file contains 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
# in case rvm installation fails | |
sudo rm -rf ~/.gnupg/ | |
# import key manually | |
sudo curl -sSL https://rvm.io/mpapis.asc | gpg --import - | |
# install | |
sudo curl -L https://get.rvm.io | bash -s stable | |
# update terminal | |
source /home/vagrant/.rvm/scripts/rvm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment