Trying to install Django. Tried copying pip's address to the PATH in environment variables. Any ideas?
C:\Users\91700>pip --version 'pip' is not recognized as an internal or external command, operable program or batch file.
Trying to install Django. Tried copying pip's address to the PATH in environment variables. Any ideas?
C:\Users\91700>pip --version 'pip' is not recognized as an internal or external command, operable program or batch file.
You can try using
py -m pip install Django
I think you need to type:
python -m pip <args>
Because pip
is not in the Path
Environment Variables