Skip to content

Instantly share code, notes, and snippets.

@lukearmstrong
Last active December 12, 2015 08:49
Show Gist options
  • Save lukearmstrong/4746853 to your computer and use it in GitHub Desktop.
Save lukearmstrong/4746853 to your computer and use it in GitHub Desktop.
Install RVM and Ruby 1.9.3 system wide on Ubuntu 12.04 LTS
curl -L https://get.rvm.io | sudo bash -s stable
sudo usermod -a -G rvm lukea
# Terminal > Edit > Profile Preferences > Title and Command > Run command as a login shell
# logout
# login
rvm list known
rvm install 1.9.3
rvm use 1.9.3 --default
# Install useful and interesting things
gem install jekyll rdiscount
gem install sass listen
gem install rails unicorn mysql2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment