sandiegopython / test-driven-django-development

This repository contains materials for a San Diego Python workshop on learning Django with test inspired development
http://test-driven-django-development.readthedocs.org/
Other
102 stars 35 forks source link

Pip is a requirement #26

Closed davidfischer closed 10 years ago

davidfischer commented 10 years ago

Make pip a proper prerequisite and/or have a good explanation on how to install it and our tutorial's dependencies.

davidfischer commented 10 years ago

One option for installing our requirements (eg. webtest) we could do pip install -r https://raw.github.com/pythonsd/test-driven-django-development/master/myblog/requirements.txt

kendallc commented 10 years ago

Good idea, otherwise it can be a bit clunky to right-click and download the requirements.txt file to the right directory.

treyhunner commented 10 years ago

Had another problem with someone not installing django-webtest and WebTest.

I think we should also reiterate (right after the first time django_webtest is imported) that if you're getting a "No module django_webtest" error you need to go install the requirements as mentioned in Getting Started

kendallc commented 10 years ago

We can have an "FAQ" section at the end as well to put miscellaneous Q&A.

On Sat, Nov 2, 2013 at 2:16 PM, Trey Hunner notifications@github.comwrote:

Had another problem with someone not installing django-webtest and WebTest.

I think we should also reiterate (right after the first time django_webtest is imported) that if you're getting a "No module django_webtest" error you need to go install the requirements as mentioned in Getting Started

— Reply to this email directly or view it on GitHubhttps://github.com/pythonsd/test-driven-django-development/issues/26#issuecomment-27632737 .

treyhunner commented 10 years ago

Is this resolved by #56?

willingc commented 10 years ago

My perspective would be #56 closes this issue.