Installing RVM and Ruby 1.9 on AWS Linux AMI
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