'I can't run pipenv install django
Whenever I enter pipenv install django in the cmd an error appears:
" 'pipenv' is not recognized as an internal or external command, operable program or batch file. "
I can run: pip install pipenv and: pip install django
Solution 1:[1]
I solved it by re-installing python then checked the check box called " add python to PATH " and it worked perfect with no errors
Solution 2:[2]
Checking "add python to PATH" when installing Python will only work for Python and pip commands. However, while installing "pipenv" using "pip install pipenv" command, pipenv will be installed but it might not be added to the PATH environment variables and you have to do it manually. Doing this, most probably the error "pipenv is not recognized..." will disappear. I solved this issue when I realized pipenv is not added to the environment variables.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | almutairi |
| Solution 2 | Moslem |
