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 Build a Todo List Application with Rails 4 Build a Todo List Application with Rails 4 Generate a Rails Application

Just starting rails, yea! I finally got all the stuff downloaded (whew!) I got the rails server up once, but...

I don't even know where to begin to troubleshoot this.

C:\Users\smolderingflax\Desktop\Projects\odot>bin/rails server
'bin' is not recognized as an internal or external comma
Jennifer Nordell
seal-mask
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! The bin is referring to a folder containing binary files. In Linux the paths are written with a slash / while in Windows paths are written with a backslash . My recommendation? Try this:

bin\rails server

I'm not 100% sure this is the correct answer, so I'm not leaving it as an answer :smiley:

Thanks Jennifer, I'll try that.

That did not fix the problem HOWEVER, knowing that linux uses / and windows uses \ seems like an important piece of info. Thank you.