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!
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

Roderick Cotton
Courses Plus Student 1,973 PointsTrying to start new Rails App
I've be at this for 30 minutes. So I installed ruby on rails on my windows computer then I go in and create a director(I made a folder) on my C drive under the user.... when I tried to execute the code
1.9.3 [~/Project] $ rvm use 1.9.3
Not working Says 1.9.3 is not recognized as command
2 Answers

James Barnett
39,199 PointsBoth the rvm
and 0.0.0.0
only apply if you are working on a OS X.
On windows the way to start rails is to type rails s
webbrick will then tell you the address it's starting on. By default you can access the rails web server webbrick on 127.0.0.1:3000
.
On Windows use CTRL-Break
to stop the webbrick server.

Roderick Cotton
Courses Plus Student 1,973 Pointsright got you and thanks