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

rvm use error

I entered the following code at the command line: $ rvm use 1.9.3

I received the following error: Gemset '' does not exist, 'rvm ruby-1.9.3-p448 do rvm gemset create ' first, or append ‘--create'.

It may be obvious I’m a newbie! Any ideas on what command I need to enter to fix this? I’m following IRB and Your First Ruby Program. I have already installed ruby—1.9.3-p448.

2 Answers

You can try this to set your default ruby version

        rvm use ruby-1.9.3-p448 --default

Thanks Mariano - I fixed it!