I get this error every time I try to verify my pipenv version
'pipenv' is not recognized as an internal or external command, operable program or batch file.
I've tried uninstalling and reinstalling as well as adding the path to the system environment variables but nothing seems to work
I know I have installed pipenv but it still wont recognized the command pipenv at all
EDIT: The Fix for this problem was running this
-m python pipenv shell
rather than this
pipenv shell
However once i was in the shell i could not run commands like this
-m python pipenv --version
Instead I had to do this
-m python3 pipenv --version
From what I have seen no one seems to have answer as to why the syntax is like this and why I have to declare -m python before every Command, as ive seen other devs run commands to python without having to declare -m python.
I am running windows 10 if this is important information