How to fix error 'pipenv' is not recognized as an internal or external command, operable program or batch file

how to fix error ‘pipenv’ is not recognized as an internal or external command, operable program or batch file

1 Like

If you haven’t already figured it out, you have to install pipenv with pip.
On a mac it’s pip3 & pip on windows. In the terminal type: pip install pipenv

1 Like
  1. First, remove your current version of virtualenv: pip uninstall virtualenv
  2. Then, remove your current version of pipenv: pip uninstall pipenv
  3. When you are asked Proceed (y/n)? just enter y. This will give you a clean slate.
  4. Finally, you can once again install pipenv and its dependencies: pip install pipenv
  5. Check installation with pipenv --version