Created
May 29, 2012 01:55
-
-
Save josnidhin/2822114 to your computer and use it in GitHub Desktop.
Installing RVM and Ruby 1.9 on AWS Linux AMI
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 -s | |
yum update | |
groupadd rvm | |
gpasswd -a ec2-user rvm | |
yum install -y gcc-c++ patch readline readline-devel zlib zlib-devel libyaml-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison iconv-devel | |
curl -L get.rvm.io | bash -s stable | |
rvm install 1.9.2 | |
rvm use 1.9.2 --default | |
ruby -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment