Griehle
Griehle

Reputation: 114

Pip Install Django Windows 10

trying to install Django on Windows 10. Used pip install Django==1.8.3 but get the syntax error 'install' isn't recognized. Read about it in a few other places, must use CMD. tried that. Tried Python CMD, tried running CMD from the folder that pip.exe is in. just installed Python 3.4. clicked pip.exe, and the other .exe's there. tried pip install again. nothing. Is this a Windows 10 Issue?

Upvotes: 1

Views: 4297

Answers (3)

Francis Kanu
Francis Kanu

Reputation: 1

Create a Bar Chart using the attached data:Company Data

  1. Years of service with this organization Less than 1 52.5% of respondents 1–2 27.5% of respondents 3–5 15% of respondents 6–10 2.5% of respondents 11–15 0 16+ 0 Prefer not to answer 2.5% of respondents
  2. I received a merit increase during the past two years Yes 7.5% of respondents No 90% of respondents Prefer not to answer 2.5% of respondents
  3. I received a promotion during the past two years Yes 7.5% of respondents No 90% of respondents Prefer not to answer 2.5% of respondents

Upvotes: 0

Griehle
Griehle

Reputation: 114

Try installing pip manually from an elevated command prompt:

py -3.4 -m ensurepip -U --default-pip

Correct answer from eryksun

Upvotes: 0

Omar Hafez
Omar Hafez

Reputation: 122

1) Download Django version you want from this page

2) Extract the downloaded file

3) open CMD from path of your downloaded file (short way to do this is to click in path bar in your window and type cmd then hit Enter key)

4) Type the next line (change path if need it , I use python 3.4.3 in my case)

C:\Python34\python.exe setup.py install

5) Wait to finish installation in few time

Upvotes: 1

Related Questions