Doing this on a mac. I've installed the package from the website but when I run a script with import pygame it says it doesn't exist. Looked online and it says I need to run the configure.py file but I can't seem to locate that file. Any tips?
Here is my code so far:
import pygame
screen = pygame.display.set_mode((640, 480))
running = 1
while running:
event = pygame.event.poll()
if event.type == pygame.QUIT:
running = 0
screen.fill((0, 0, 0))
pygame.draw.line(screen, (0, 0, 255), (0, 0), (639, 479))
pygame.draw.aaline(screen, (0, 0, 255), (639, 0), (0, 479))
pygame.display.flip()