Reputation: 114
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
Reputation: 1
Create a Bar Chart using the attached data:Company Data
Upvotes: 0
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
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