This workshop will be retired on May 1, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Installing a Ruby on Rails Development Environment in OS X!

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
In this video, you'll learn how to install a Ruby on Rails Development Environment in OS X.
Note: A more current version of this workshop is available here.
Install XCode
XCode can be installed from the App Store. The rest of these commands take place in a Terminal.
Install XCode
Command line tools come with it. Show app store.
Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew doctor
Install rbenv from Homebrew
brew install rbenv ruby-build
echo "gem: --no-document" > ~/.gemrc
Install a ruby
rbenv install 2.2.1
rbenv global 2.2.1
rbenv rehash
Install a database
brew install mysql
Install other dependencies
brew install wget curl imagemagick
Install sublimetext
Download from the Sublime Text website.
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime
Install bundler and rails
In a terminal:
gem install bundler
rbenv rehash
gem install rails
Configure git
git config --global user.name "Jason Seifer"
git config --global user.email jason@teamtreehouse.com
Create a new app
mkdir projects
cd projects
rails new testapp
cd testapp
subl -n .
bin/rails server
Create a quick scaffold
bin/rails generate scaffold name title:string first:string last:string
bin/rake db:migrate
bin/rails s
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Shunsuke Taguchi
9,380 Points1 Answer
-
jon ah
2,190 Pointswhy is the setting path section not included in the teachers notes?
Posted by jon ahjon ah
2,190 Points0 Answers
-
jon ah
2,190 Points2 Answers
-
Thomas Brushel
11,713 Points2 Answers
-
Wilfredo Casas
6,174 Points1 Answer
-
Jason Sprague
710 Points1 Answer
-
Melodie Joseph
2,355 Points0 Answers
-
Michel Frechette
10,551 Points0 Answers
-
Johnny Torres
1,338 PointsLocalhost:3000 appears except when I do through the VM treehouse.
Posted by Johnny TorresJohnny Torres
1,338 Points2 Answers
-
HARRIS SPAHIC
4,890 Points1 Answer
-
Caleb Grams
4,411 PointsI followed all the steps but I ended up with the following message in my terminal: "No such file or directory"
Posted by Caleb GramsCaleb Grams
4,411 Points0 Answers
-
Brian Patterson
19,588 Points3 Answers
-
Julius Michael
8,967 Points0 Answers
-
Loi Tran
9,053 PointsLois-MacBook-Pro:odot Lois$ ruby -v yields different results from Jason.
Posted by Loi TranLoi Tran
9,053 Points0 Answers
-
Laurie Williams
10,174 Points0 Answers
-
Andrew Walters
8,876 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up