Created
April 7, 2014 19:44
-
-
Save thinkclay/10038490 to your computer and use it in GitHub Desktop.
Up and running with Ubuntu and Rails
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
| apt-get update | |
| apt-get upgrade | |
| apt-get install gcc build-essential git-core mongodb | |
| git clone https://github.com/sstephenson/rbenv.git ~/.rbenv | |
| echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
| echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
| . ~/.bash_profile | |
| git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
| rbenv install -l | |
| rbenv install 2.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment