Home > database >  Everytime i try to install Django using "pip install django" on my command prompt why does
Everytime i try to install Django using "pip install django" on my command prompt why does

Time:11-12

pip install Django

'pip' is not recognized as an internal or external command, operable program or batch file.

CodePudding user response:

Well, this is an error you'll have to face multiple times in the future. It's pretty self-explanatory. It means that 'pip' does not exist in your system. To fix this either: 1. Reinstall python (using the installer) and make sure that you've checked the 'pip' checkbox OR 2. Download 'pip.exe' manually and then add it to 'PATH'.

CodePudding user response:

To expand on what Tony has said. you should either reinstall python but since you are trying to use pip already. I am going to guess you already have python and if you do then find the python location (default should be: C:\program files (x86)\Python3\bin) and then add to path.

  • Related