Skip to content

Instantly share code, notes, and snippets.

@wyanez
Created January 30, 2011 19:42
Show Gist options
  • Save wyanez/803166 to your computer and use it in GitHub Desktop.
Save wyanez/803166 to your computer and use it in GitHub Desktop.
[Ruby] Instalar RVM (Ruby Version Manager)
#Instalacion de RVM en Ubuntu y Debian
sudo aptitude install -y curl git-core
curl -L https://get.rvm.io | bash -s stable
#type rvm | head -1
#Necesario para instalar los rubies
sudo aptitude install -y build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config
rvm install 1.8.7,1.9.3
rvm use 1.9.3 --default
#Para Actualizar RVM:
# rvm get stable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment