Skip to content

Instantly share code, notes, and snippets.

@chandresh
Created September 6, 2013 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chandresh/6458949 to your computer and use it in GitHub Desktop.
Save chandresh/6458949 to your computer and use it in GitHub Desktop.
Installing Ruby on Vagrant:
Installing Ruby on Vagrant:
Open Git Shell
vagrant up
vagrant ssh
Ruby Package Managers:
1. RVM : https://rvm.io
2. RB Env
Run:
sudo apt-get update # updating the ubuntu package manager
sudo apt-get install curl # installing curl
Run:
\curl -L https://get.rvm.io | bash -s stable # installing rvm
source ~/.profile # Reload the .profile
rvm requirements # Ruby prerequisites on your OS.
rvm install 2.0.0 # install Ruby 2.0.0
nano .bashrc
copy & paste from: https://rvm.io/workflow/scripting
Press: Ctr+X
Press: Y
Press: Enter
source .bashrc
rvm --default use 2.0.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment