Last active
December 28, 2015 13:49
-
-
Save bandicoot86/7510551 to your computer and use it in GitHub Desktop.
Install ruby on rails all-in-one
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
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev | |
curl -L https://get.rvm.io | bash -s stable | |
source ~/.rvm/scripts/rvm | |
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc | |
rvm install 2.0.0-p247 | |
rvm use 2.0.0-p247 --default | |
ruby -v | |
sudo apt-get install postgresql | |
sudo apt-get install libpq-dev | |
sudo apt-get install libv8-dev | |
sudo apt-get install nodejs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment