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 trialNicholas Hebb
18,872 PointsImpact 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
Courses Plus Student 22,267 PointsIf 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.
Nicholas Hebb
18,872 PointsThanks 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
Courses Plus Student 22,267 PointsI 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.