[Fixed]-Installing Django with pip

35👍

Run pip install django from windows command prompt instead of python shell.

👤arulmr

9👍

under the folder C:\Python27\Scripts (or the folder you installed pip), press SHIFT and right click a blank space then select open command window here,
run

pip install Django

6👍

pip install django==1.4

or

pip install django==1.6

or

pip install  django

3👍

pip is not run from the Python shell. Run this from the Command prompt.

pip install Django

It will install the latest Django 1.5.

2👍

In addition to user2032220’s answer and arulmr’s answer, try to install Django within a Virtual Environment.It will help you in the long run.

Here’s the way to do it :

http://simononsoftware.com/virtualenv-tutorial/

0👍

Running Python34 you should go to c:Python34, folder Scripts, and type

  pip install django.                                    

Leave a comment