Skip to content

Instantly share code, notes, and snippets.

@davidfeldi
Forked from kainam00/rvm-amazon-linux.bash
Created January 11, 2018 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidfeldi/9683b330e0f7b71c58245e227878212b to your computer and use it in GitHub Desktop.
Save davidfeldi/9683b330e0f7b71c58245e227878212b to your computer and use it in GitHub Desktop.
Install RVM on Amazon Linux
#!/bin/bash
# Install prerequisites
yum install -y gcc openssl-devel libyaml-devel libffi-devel readline-devel zlib-devel gdbm-devel ncurses-devel ruby-devel gcc-c++ jq git
# Import key
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
# Install RVM
curl -sSL https://get.rvm.io | bash -s stable --ruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment