-3

pip not working with any followed commands:

pip not working with any followed commands

pip is not showing anywhere:

pip is not showing anywhere

Gino Mempin
  • 25,369
  • 29
  • 96
  • 135

1 Answers1

1

It sounds like you may not have pip installed, judging from your pictures. If so type this to check python -m pip --version.

If you don't have it installed, perhaps try python -m pip install.

If you do have pip installed and are trying to install pygame, I suggest trying python -m pip install pygame.

I also found that using python didn't work but replacing it with py did. I did these things (a while ago) in terminal on a windows 10 machine, so my suggestions may not be relevant.

Dharman
  • 30,962
  • 25
  • 85
  • 135