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: http://pastebin.com/LWUSU3cc I also tried pyinstaller , which also compiles, but again with errors. I found this patch here( http://mrmekon.tumblr.com/post/5272210442/pyinstaller-and-pyttsx) to make it work. But have no clue as to how to apply that patch to pyinstaller. Any help please import statements from the script are as follows: import pyttsx import threading import threading from threading import * from threading import * import datetime import datetime import os import os import sys import sys import ctypes import ctypes from ctypes import wintypes from ctypes import wintypes import win32clipboard import win32clipboard import win32con Thanks -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
