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

Development Tools Installing a Ruby Development Environment Installing a Ruby Development Environment Installing Ruby on Windows

Anthony Rehfuss
Anthony Rehfuss
4,345 Points

bundle exec rails server command fails

I followed all installation directions on my windows 8.1 operating system, but after the command 'bundle exec rails server', rails exits right after starting up.

Anthony,

It's hard to know without some more information. Are you sure you have entered that directory with cd testapp? If you are sure you are in that directory you could try rails s instead of bundle exec rails server.

Anthony Rehfuss
Anthony Rehfuss
4,345 Points

TZInfo::DataSourceNotFound Errors -- this was one of the errors at the top. I went to https://github.com/tzinfo/tzinfo/wiki/Resolving-TZInfo::DataSourceNotFound-Errors

and followed the directions which told me to go into my Gemfile and edit this gem 'tzinfo-data', platforms: [:mingw, :mswin]

to this gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]

Thanks for the response Nathan.

Great research. Glad you are back on track.