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 trialSahar Nasiri
7,454 PointsStart a project in Windows
How can I build a Django project in windows and how can set a directory for that?
1 Answer
Andreas cormack
Python Web Development Techdegree Graduate 33,011 PointsHi Sahar
First install python on windows, see link on how to do that http://www.howtogeek.com/197947/how-to-install-python-on-windows/
1) Install virtualenv by typing the command-> pip install virtualenv
2) run the command -> \your directory path \env\Scripts\activate
3) once the virtualenv is activated type the command -> pip install django
From this point on you should be able to create a django project as normal.
4) to deactivate the enviroment type -> deactivate
hope this helps