Last active
March 8, 2018 09:00
-
-
Save JoshuaTheMiller/abb920c3b5d0a0bd50e5f43cb9bf0c9c to your computer and use it in GitHub Desktop.
Ubuntu RVM install script
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 apt-get update -y; \ | |
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB; \ | |
sudo apt-get install software-properties-common -y; \ | |
sudo apt-add-repository -y ppa:rael-gc/rvm; \ | |
sudo apt-get update -y; \ | |
sudo apt-get install rvm -y; \ | |
rvm install "ruby-2.4.3"; \ | |
rvm use "ruby-2.4.3"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment