I\'ve made my first Python program, using Python 3.2. Now I\'m trying to figure out how to make it an executable.
I decided to try gui2exe for making my executables, but I cannot get it to work, with neither PyInstaller, Py2exe or cxFreeze. It creates a non-starting executable (I run it, it starts loading, then i
So I\'m trying to package a python script into an exe that can run on a Windows machine without needing a python install. I\'m running WIn7 &my application uses pywin32 & the launcher is a fil
I\'m trying to convert my pygame game to exe with Cx_freeze; It works fine when I run it from a script, but when I run it as an exe, it crashes with a:
Log.py import logging import logging.handlers class Log: def __init__(self): FILENAME=\'LOG\' logging.basicConfig(level=logging.INFO)
I\'m trying to compile a python script which contains spanish strings. If i run the .py, it\'s displayed correctly. Compilation runs fine, but when I run the resulting .exe, the non-ascii characters
I have a small bit of code (part of a larger program) that just checks the drive letter and status of the CDROM
I am having issues building an exe verision of my python 3.2 script. The script requires pyserial and builds using cx_freeze. However, when I run the exe I get:
I am unable to make an executable from my python program which uses Pmw (Python mega widgets). I use cx_Freeze (through gui backend \"Gui2Exe\"). Searching Pmw site I\'ve found that it\'s caused by ho
I get the error: \"UnicodeDecodeError: \'ascii\' codec can\'t decode byte 0xa0 in position 7338: ordinal not in range(128)\" once I try to run the progr开发者_如何学运维am after I freeze my script wit