0

I wanna use the pygame module ( i'm on VSCODE ), so i'v tryed to use " pip install pygame and the terminal return me that. enter image description here

Can someone to help me !? :/

Heisen
  • 1
  • Since you are asking on the english stack overflow site, it might be helpful if you would [edit] your question to include the english translation of the full error message so we can better understand and help – G. Anderson Jan 27 '22 at 20:03
  • Does this answer your question? ['pip' is not recognized as an internal or external command](https://stackoverflow.com/questions/23708898/pip-is-not-recognized-as-an-internal-or-external-command) – buran Jan 27 '22 at 20:06
  • It seems `pip` is not on your path or not installed. What about `python -m pip install pygame`; does that work? – a_guest Jan 27 '22 at 20:16
  • You either do not have `python` or `pip` installed, or the correct path variables are not set. – deponovo Jan 28 '22 at 14:17
  • In the future, please paste error messages as text instead of images (and in english), text is more easily accessible – Numerlor Feb 05 '22 at 21:55

1 Answers1

0

Your pip script is not globally recognized, you can forward to this article or this one for help or just open command prompt and go to your python folder using "cd pathtoyourpythonfolder" default Python path on Windows is C:\Users\YourUsername\AppData\Local\Programs\Python\Python"yourpythonversion"\Scripts there execute your pip install command..

The_napkin
  • 24
  • 4