I just learned how to use py2exe to turn a helloworld.py script into a helloworld.exe script. But when I do it for something more complicated, I get an error. The exe is created, but when I run it I get an error:
C:\Documents and Settings\Gulshan\My Documents\Python Scripts\dist>snake.exe
snake.exe:85: RuntimeWarning: use font: DLL load failed: The specified module co
uld not be found.
Traceback (most recent call last):
File "Snake.py", line 85, in <module>
File "pygame\__init__.pyc", line 70, in __getattr__
NotImplementedError: font module not available
How do I fix this?