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 trialChristian Hingle
15,495 PointsJust bought a MacBookPro11,4
So I'm following along with the videos on how to set up a Ruby Development Environment on my new Mac and nothing is going right. I'm guessing the videos are outdated? Can someone walk me through the process so I can keep learning? Thanks in advance.
Matthew Bingham
11,927 PointsThe problem with video learning software development is that it's an ever evolving process. It's difficult to keep videos updated with relevant contact (I had a similar issue recently with the laravel course).
On the plus side, it's an opportunity to explore the web for active communities - which you'll do anyway if you are really willing to learn.
Unfortunately I don't have a Mac so can't help you out, but a quick search brings up an excellent guide that may help you: https://gorails.com/setup/osx/10.10-yosemite
Good luck!
Christian Hingle
15,495 PointsThanks for the links guys, but I'm still struggling to get it going.
In the tutorial Matthew provided, I managed to get Ruby 2.2.2 installed to /Users/home/.rbenv/versions/2.2.2
Then I typed- rbenv global 2.2.2
Then- ruby -v
And it still tells me I have Ruby 2.0.0
1 Answer
Charles Smith
7,575 PointsInstalling a new dev environment is always a bit frustrating. I have had a lot of luck with RVM. Once you have RVM installed, you can do a
rvm list known
which will show you which ruby versions are available. Then you can do something like:
rvm use 2.1
Then you should get output from
ruby -v
If so, from there you can just
gem install rails
and head off. however, I've never done an install that was frustration-free, even with RVM. I would plan to get some errors and end up googling. If you're in a pinch, there is the treehouseVM, which they have a video for how to get up and running with Vagrant.
jason chan
31,009 Pointsjason chan
31,009 Pointshttps://youtu.be/BJEFbBxyvhI
I hope that helps. RUBY on rails is a lot of command lines to just make an app work.