0

I thought version 3 has pip installed. Why is my command prompt giving me this message when I do pip --version?

'pip' is not recognized as an internal or external command,
operable program or batch file.

What is the issue?

wovano
  • 4,543
  • 5
  • 22
  • 49
simon
  • 11
  • 4
  • you need to add the python path to Environment Variables. For windows: https://stackoverflow.com/questions/3701646/how-to-add-to-the-pythonpath-in-windows-so-it-finds-my-modules-packages – Shankar Mar 09 '22 at 12:19
  • Microsoft windows 10 @AbdulNiyasPM – simon Mar 09 '22 at 12:21
  • It depends on how you installed Python. `pip` is not part of the standard library. – chepner Mar 09 '22 at 12:30

1 Answers1

0

You can try using

py -m pip --version
vimuth
  • 5,064
  • 33
  • 79
  • 116