将用python编写的服务转换为可执行文件

时间:2015-06-15 07:46:57

标签: python dll

我在python中编写了一个windows服务。当我通过命令行运行服务时,使用命令

python service.py install
python service.py start

它完美运行。  现在我想将其转换为可执行文件。我使用py2exe并运行以下命令

python setup.py py2exe

但是一旦到达下一行,应用程序就会崩溃。

复制dll

    copying C:\Python27\w9xpopen.exe -> C:\True copy\dist  
    copying C:\Python27\python27.dll -> C:\True copy\dist  
    setting sys.winver for 'C:\True copy\dist\python27.dll' to '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

有人可以告诉为什么以及如何解决它?

0 个答案:

没有答案