Skip to content

Instantly share code, notes, and snippets.

@JoshuaTheMiller
Last active March 8, 2018 09:00
Show Gist options
  • Save JoshuaTheMiller/abb920c3b5d0a0bd50e5f43cb9bf0c9c to your computer and use it in GitHub Desktop.
Save JoshuaTheMiller/abb920c3b5d0a0bd50e5f43cb9bf0c9c to your computer and use it in GitHub Desktop.
Ubuntu RVM install script
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