Search code examples
pythondjangowindowspip

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?


Solution

  • Try installing pip manually from an elevated command prompt:

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

    Correct answer from eryksun