|
Re: help!!
A very telling way of checking if a module is properly installed, is by opening Python IDLE or Python Console, and typing "import pygame". If an error appears, Python can't find Pygame.
If the line executes without an error, then type "dir(pygame)". If you don't get a large list of functions, Pygame was not completely installed, but it was found.
|