Reputation: 1
I checked that I am using python 3.8.5 on my windows 10. I'm trying to install a package with pip but the terminal tells me '[pip' is not recognized as an internal or external command, operable program or batch file.]
I am using Python version 3.8.5 and I understand python version 3.4 and above have pip pre-installed, I tried setting environment variables and all other alternative solution like I tried python -m pip --version it showed me error... still I am not able to solve it. Then I noticed pip.exe file missing from python/scripts module, so what can I do next.... Does I have to install it manually??
Upvotes: 0
Views: 1955
Reputation: 588
pip doesn't work unless you have added python to path.
There are two methods to add python to path:
Upvotes: 1