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

Impact of not choosing "Run Git and included Unix tools ..."?

I have GitHub for Windows on my system, and I use the Git shell provided with it. As far as I know, their installer doesn't include Unix command line tools. Will that be an issue when trying to follow along with the RoR course?

2 Answers

Sander de Wijs
PLUS
Sander de Wijs
Courses Plus Student 22,267 Points

If you install RoR with the Windows Rails installer, it also installs a Ruby command prompt. This was enough for me to follow along with the course.

Thanks Sander - good to know. I had trouble getting sqlite installed under ruby so I ended up installing the VM. The VM is easy to install and works well. However, it can be a bit sluggish so I'll try doing most of it in the regular ruby shell.

Sander de Wijs
Sander de Wijs
Courses Plus Student 22,267 Points

I had the exact same problem with sqlite. I fixed it by modifying the gemfile.lock in my project directory. It can contain an incorrect reference to 'sqlite3 (1.3.7-x86-mingw32)'. After changing it to 'sqlite3 (1.3.7)' the server ran without errors.