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

install ruby help!

i try to install ruby on macbook pro os 10.8, I got to the RVM installed, but when I try to use '$ rvm install 1.9.3 ' to install ruby, I got the following message: No binary rubies available for: osx/10.8/x86_64/ruby-1.9.3-p448. Continuing with compilation. Please read 'rvm help mount' to get more information on binary rubies. rm: /usr/share/xcode-select/xcode_dir_path: Permission denied , please help!

3 Answers

Permissions errors on OS X usually come from trying to install something that requires access to particular files/directories which your user account doesn't have permissions to. This can be easily solved by installing that piece of software using sudo command.

Try using sudo rvm install 1.9.3

Thanks for your help :)

Thanks for your help, I will try it!