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 trialJohanne Trippas
7,367 PointsRails installer (Mac OSX 10.9)
Hi,
The webpage from the Rails Installer says the following
"Please do not run the installer on OSX Mavericks until further notice. "
Is there an other way to get everything installed?
Thanks!
1 Answer
James Barnett
39,199 PointsCheck out the Installing Ruby on Mac video, from the Installing a Ruby Development Environment course.
Johanne Trippas
7,367 PointsJohanne Trippas
7,367 PointsHi James,
I did that video before but it doesn't install rvm and mysql.
Thanks.
James Barnett
39,199 PointsJames Barnett
39,199 PointsNope. It uses
rbenv
&sqlite
instead for it's Rails install.Johanne Trippas
7,367 PointsJohanne Trippas
7,367 PointsSo does it mean that I can type
rbenv
instead ofrvm
?James Barnett
39,199 PointsJames Barnett
39,199 PointsYou use
rbenv global
insteadrvm use
As noted in the video I linked you to at time index 3:22, Jason installed Ruby version 2.0.0-p353 so to tell
rbenv
to use that version he typed.rbenv global 2.0.0-p353
Johanne Trippas
7,367 PointsJohanne Trippas
7,367 PointsThanks for helping James! It seems to work fine.