Reputation: 13
I can't make this .py .exe help me. i have python34 installed on windows 7 - 32 bits
This is a Snake.py simple game and i can't convert it using py2exe. i looked in google and stackoverflow and everywhere else but couldn't fix it. i get this error when trying to convert the script.
The error: http://pastebin.com/uRHpg1B8
And this is my game: http://pastebin.com/R6A89Nhe
Upvotes: 1
Views: 377
Reputation: 7035
Well, based on your error output, it looks like you are missing several packages which are important for pygame
to function. Error output duplicated below, for future reference.
8 missing Modules
------------------
? MacOS imported from pygame.macosx
? Numeric imported from pygame
? OpenGL imported from pygame
? Py25Queue imported from pygame.threads
? Queue imported from pygame.threads
? numpy imported from pygame, pygame._numpysndarra
y, pygame._numpysurfarray
? packaging imported from pkg_resources
? readline imported from cmd, code, pdb
Upvotes: 1