Tejaswini Sarode
Tejaswini Sarode

Reputation: 1

Pip missing in python script

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

Answers (1)

baisbdhfug
baisbdhfug

Reputation: 588

pip doesn't work unless you have added python to path.

There are two methods to add python to path:

  1. Reinstall python and make sure to check the box that says "Add Python To Path"
  2. https://datatofish.com/add-python-to-windows-path/

Upvotes: 1

Related Questions