cute.bandar
Cyborg Agent
I wrote a small script on xp that I want to distribute. So I tried compiling it using py2exe. It compiles, but the resulting exe throws errors when run.
Link to my script:
[Python] import pyttsx import threading from threading import * import datetime imp - Pastebin.com
Here's my attempt at compiling it using py2exe
I also tried pyinstaller , which also compiles, but again with errors. I found this patch here to make it work. But have no clue as to how to apply that patch to pyinstaller.
Any help please
Thanks
Link to my script:
[Python] import pyttsx import threading from threading import * import datetime imp - Pastebin.com
Here's my attempt at compiling it using py2exe
#COMPILE python setup.py py2exe --includes pyttsx.drivers.sapi5
from distutils.core import setup
import py2exe
setup(windows=['speechplay.py'])
I also tried pyinstaller , which also compiles, but again with errors. I found this patch here to make it work. But have no clue as to how to apply that patch to pyinstaller.
Any help please
Thanks