I'm trying to turn a game I made into an executable using Pyinstaller (I'd be open to other similar programs, but I can't get py2exe to work at all).
This is Windows 8, Python 2.7 + Pygame.
I created a simple hello.py file which just prints "hello world" and then turned that into an exe which worked perfectly. However, when I tried making the game itself into an exe, it's failing in strange ways.
The command I used was pyinstaller gamename.py
in command line.
The process then ran to completion and created the exe,but when I try to open it I just get "gamename.exe" has stopped working. I tried openning it from the command prompt to see what errors it was printing, but that doesn't show any errors either.
Any ideas?
Thanks!