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 Installing a Ruby Development Environment Installing a Ruby Development Environment Installing Ruby on Windows

Windows Rails new testapp issue in the cmd window.

I installed Rails using the cmd window, began to run a testapp and it stalled on a prompt. After a minute, it continued to run until completion. Following along with the Treehouse video, I typed in the command "bundle exec rails server" and received the same prompt. The prompt is as follows...

DL is deprecated, please use Fiddle Could not locate Gemfile

I used Google to search the issue and found a few posts that are above my head. Any help is very appreciated.

Thanks!

1 Answer

Maciej Czuchnowski
Maciej Czuchnowski
36,441 Points

So I assume you did 'rails new testapp' and that this created a folder for your new application with all the proper file structure inside. Try simply going there and typing 'rails server', without the bundle exec part. Also, in Windows you should use cmder or git bash (you can download cmder from http://bliker.github.io/cmder/ and git bash is already installed with git, it should be somewhere in your Program Files (x86)/Git/). This would give you access to unix commands, which are used throughout the videos.

That fixed the issue! Looks like there was a Firewall that wasn't allowing the program access to run certain extensions. Thanks Maciej!