python2.7打包成exe文件 debug后出现ImportError: No module named 'path'
程序员文章站
2022-06-17 10:46:33
...
先写下面的python文件
#encoding=utf-8
import win32serviceutil
import win32service
import win32event
import winerror
import servicemanager
import time
import sys
sys.path.append('C:\\Python27\\lib')
import os
import OpenOPC
import win32timezone
class WinPollManager(win32serviceutil.ServiceFramework):
"""
#1.安装服务
python WinPollManager.py install
#2.让服务自动启动
python WinPollManager.py --startup auto install
#3.启动服务
python WinPollManager.py start
#4.重启服务
python WinPollManager.py restart
#5.停止服务
python WinPollManager.py stop
#6.删除/卸载服务
python WinPollManager.py remove
"""
_svc_name_ = "py_agent_poll_manager" # 服务名
_svc_display_name_ = "py_agent_poll_manager" # 服务在windows系统中显示的名称
_svc_description_ = "python windows monitor agent" # 服务的描述
def __init__(self, args):
win32serviceutil.ServiceFramework.__init__(self, args)
self.hWaitStop = win32event.CreateEvent(None, 0, 0, None)
self.isAlive = True
self._poll_intvl = 30
def SvcDoRun(self):
# 你需要写的代码位置
# 等待服务被停止
win32event.WaitForSingleObject(self.hWaitStop, win32event.INFINITE)
def SvcStop(self):
self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)
win32event.SetEvent(self.hWaitStop)
self.isAlive = False
if __name__ == '__main__':
if len(sys.argv) == 1:
try:
evtsrc_dll = os.path.abspath(servicemanager.__file__)
servicemanager.PrepareToHostSingle(WinPollManager)
servicemanager.Initialize('WinPollManager', evtsrc_dll)
servicemanager.StartServiceCtrlDispatcher()
except win32service.error as details:
if eval(str(details))[0] == winerror.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT:
win32serviceutil.usage()
else:
win32serviceutil.HandleCommandLine(WinPollManager)
一般人可能会想到使用pip install pyinstaller,debug之后出现ImportError: No module named 'path’的错误,先打住,如果是python3使用此类方法的确可以直接运行,但是是python2.7的话,我来教你另外一个方法,先去https://sourceforge.net/projects/pyinstaller/下载这个资源,然后把上面的py文件放到这个资源下面,运行python pyinstaller.py -F 你的文件.py,会出现同名目录,打开dist文件夹,可以执行下面命令,先执行
你的文件.exe debug确认你的exe是否正常
你的文件.exe install #安装服务
你的文件.exe --startup auto install #让服务开机自启
你的文件.exe start #开启服务
你的文件.exe restart #重启服务
你的文件.exe stop #停止服务
你的文件.exe remove #卸载服务
上一篇: php引用(&)详解及注意事项
下一篇: php程序怎调试?