About 2,280,000 results
Open links in new tab
  1. How to solve the "pip install pygame" issue? - Stack Overflow

    Jun 23, 2019 · For this, you have to install pygame package from the cmd (on Windows) or from the terminal (on mac). Just type pip install pygame.If it doesn't work for you, then try using this …

  2. How to make a character jump in Pygame? - Stack Overflow

    To make a character jump you have to use the KEYDOWN event, but not pygame.key.get_pressed(). pygame.key.get_pressed () is for continuous movement when a …

  3. ImportError: No module named 'pygame' - Stack Overflow

    Aug 19, 2013 · For this you have to install pygame package from the cmd (on Windows) or from terminal (on mac). Just type pip install pygame .If it doesn't work for you, then try using this …

  4. Getting requirements to build wheel-error Pygame on Windows

    May 17, 2023 · I am trying to install Pygame using this: pip install pygame and I get this result: ` pip install pygame Collecting pygame Using cached pygame-2.4.0.tar.gz (13.2 MB) Installing …

  5. python - Is it possible to run game made with pygame on browser …

    May 10, 2022 · I have made a small space invader game using pygame and I was wondering if I could play it on the browser using pyscript. Is this even possible ? Do I have to rewrite …

  6. is it possible to run pygame or pyglet in a browser?

    10 Neither pyglet nor pygame will run in a browser. I wouldn't really recommend using Python at all if you target is a web browser. JavaScript (with HTML5 Canvas), Flash, or Java applets are …

  7. How do I maximize the display screen in PyGame?

    Jul 21, 2015 · To make the window resizeable, add the pygame.RESIZABLE parameter when seting the mode. You can set the mode of the screen surface multiple times but you might …

  8. How to import pygame in visual studio code? - Stack Overflow

    Jan 26, 2019 · To elaborate on @Mehrdad's suggestion: There's a section on installing matplotlib in the Install and use packages section of the Visual Studio Code Get Started Tutorial. …

  9. python - Pygame with Multiple Windows - Stack Overflow

    Apr 23, 2015 · The short answer is no, creating two pygame windows in the same process is not possible (as of April 2015). If you want to run two windows with one process, you should look …

  10. Embedding a Pygame window into a Tkinter or WxPython frame

    Apr 27, 2014 · A friend and I are making a game in pygame. We would like to have a pygame window embedded into a tkinter or WxPython frame, so that we can include text input, buttons, …