dll - Converting service written in python to an executable -
i have written windows service in python. when run service through command line, using commands
python service.py install python service.py start
it runs perfectly. want convert executable. used py2exe , ran following command
python setup.py py2exe
but reaches following line, app crashes.
copy dlls
copying c:\python27\w9xpopen.exe -> c:\true copy\dist copying c:\python27\python27.dll -> c:\true copy\dist setting sys.winver 'c:\true copy\dist\python27.dll' 'py2exe' copying c:\python27\pywintypes27.dll -> c:\true copy\dist copying c:\python27\lib\site-packages\py2exe\run_w.exe -> c:\true copy\dist\service.exe
could tell why , how solve it?
Comments
Post a Comment