I tried to update to version 2.0.0dev008, as instructed by this thread: Python Launcher not responding with Pygame
I went into interpreter settings, downloaded and installed the latest version of pygame and this is what appears still -
pygame 1.9.6
Hello from the pygame community.https://www.pygame.org/contribute.html
<Event(1-ActiveEvent {'gain': 0, 'state': 1})>
and then the rocket just bounces on the dock until I force quit with no window opened for the game.
Here is the tutorial game code I was using:
import pygame
pygame.init()
gameDisplay = pygame.display.set_mode((800,600))
pygame.display.set_caption('A bit Racey')
clock = pygame.time.Clock()
crashed = False
while not crashed:
for event in pygame.event.get():
if event.type == pygame.QUIT:
crashed = True
print(event)
pygame.display.update()
clock.tick(60)
pygame.quit()
quit()