Last active
December 12, 2015 08:49
-
-
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
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
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