Created
September 9, 2009 09:29
-
-
Save ngpestelos/183613 to your computer and use it in GitHub Desktop.
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
Here are the steps I took to get Rails working on an Ubuntu VirtualBox instance: | |
1. Software Versions | |
* Ubuntu 9.04 (I'm using xubuntu-9.04 and I assume Rails wouldn't care) | |
* Ruby 1.8.7 | |
* Rails 2.3 | |
* MySQL 5.x | |
2. Installing packages | |
$ sudo aptitude install rails | |
$ sudo aptitude install mysql-server | |
3. Updating RubyGems | |
RubyGems is a package management system (think Python Eggs/CPAN). | |
$ sudo gem update --system | |
References | |
* Agile Web Development with Rails, 3rd Edition (Chapter 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment