Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Build a Simple Ruby on Rails Application Getting Started with Rails Installing Rails (Mac)

Rails Package download for OSX Mavericks

railsinstaller.org does not support Mac OS X Mavericks so I need some help. How should I go about installing the package?

1 Answer

Stone Preston
Stone Preston
42,016 Points

I would recommend using RVM (they use rbenv in the newer rails videos, but I like rvm better). Alternatively, just follow the instructions in this video. it doesnt use rails installer, it uses rbenv.

NOTE: I highly recommend using the versions of rails and ruby used in the videos you will be watching to avoid conflict. If you are watching the treebook videos I would not recommend using rails 4 and ruby 2.0.0, I would use what the instructor is using.

Here is how to set up your environment using RVM

You should already have ruby installed (you can run $ ruby -v to check)

Run the following command to install rvm with ruby:

$  curl -sSL https://get.rvm.io | bash -s stable --ruby

then after installing rvm you can install rails:

$ gem install rails --version 4.0.4