Making a python script executable in python 2.7
executable, python
Solution
Can always try http://cx-freeze.sourceforge.net, works with all versions of python including 3.3.
Problem
We are trying to make our python script execute itself as a .exe file, without having python installed. Like if we give our program to someone else, they wouldn't need to install python to open it. It is a text-based game like zork, so we need a gui, like cmd, to run it. We have tried using py2exe, and pyinstaller, but none of them made any sense, and don't work with 2.7.3 for some reason. Any help?