开发机器:
我使用pyinstaller qrprint.py
部署,它在这台机器上运行良好。
然后我将文件夹复制到虚拟机(vmware工作站+ winowd7 32bit)并运行,它不能用于信息Failed to execute script pyi_rth_qt5
我尝试搜索解决方案,例如https://github.com/pyinstaller/pyinstaller/issues/1679,它无能为力。
我用DependencyWalker
找到了丢失的dll,它无法正常工作。
这是两台机器pyinstaller qrprint.py --debug
发展Deng:
PyInstaller Bootloader 3.x
LOADER: executable is C:\Users\Administrator\Desktop\python demo\dist\qrPrint\qrPrint.exe
LOADER: homepath is C:\Users\Administrator\Desktop\python demo\dist\qrPrint
LOADER: _MEIPASS2 is NULL
LOADER: archivename is C:\Users\Administrator\Desktop\python demo\dist\qrPrint\qrPrint.exe
LOADER: No need to extract files to run; setting extractionpath to homepath
LOADER: SetDllDirectory(C:\Users\Administrator\Desktop\python demo\dist\qrPrint)
LOADER: Already in the child - running user's code.
LOADER: Python library: C:\Users\Administrator\Desktop\python demo\dist\qrPrint\python27.dll
LOADER: Loaded functions from Python library.
LOADER: Manipulating environment (sys.path, sys.prefix)
LOADER: sys.prefix is C:\Users\ADMINI~1\Desktop\PYTHON~1\dist\qrPrint
LOADER: Setting runtime options
LOADER: Initializing python
LOADER: Overriding Python's sys.path
LOADER: Post-init sys.path is C:\Users\Administrator\Desktop\python demo\dist\qrPrint
LOADER: Setting sys.argv
LOADER: setting sys._MEIPASS
LOADER: importing modules from CArchive
LOADER: extracted struct
LOADER: callfunction returned...
LOADER: extracted pyimod01_os_path
LOADER: callfunction returned...
LOADER: extracted pyimod02_archive
LOADER: callfunction returned...
LOADER: extracted pyimod03_importers
LOADER: callfunction returned...
LOADER: Installing PYZ archive with Python modules.
LOADER: PYZ archive: out00-PYZ.pyz
LOADER: Running pyiboot01_bootstrap.py
LOADER: Running pyi_rth__tkinter.py
LOADER: Running pyi_rth_qt5.py
LOADER: Running pyi_rth_qt5plugins.py
LOADER: Running qrPrint.py
虚拟机:
PyInstaller Bootloader 3.x
LOADER: executable is C:\Users\Administrator\Desktop\qrPrint\qrPrint.exe
LOADER: homepath is C:\Users\Administrator\Desktop\qrPrint
LOADER: _MEIPASS2 is NULL
LOADER: archivename is C:\Users\Administrator\Desktop\qrPrint\qrPrint.exe
LOADER: No need to extract files to run; setting extractionpath to homepath
LOADER: SetDllDirectory(C:\Users\Administrator\Desktop\qrPrint)
LOADER: Already in the child - running user's code.
LOADER: Python library: C:\Users\Administrator\Desktop\qrPrint\python27.dll
LOADER: Loaded functions from Python library.
LOADER: Manipulating environment (sys.path, sys.prefix)
LOADER: sys.prefix is C:\Users\ADMINI~1\Desktop\qrPrint
LOADER: Setting runtime options
LOADER: Initializing python
LOADER: Overriding Python's sys.path
LOADER: Post-init sys.path is C:\Users\Administrator\Desktop\qrPrint
LOADER: Setting sys.argv
LOADER: setting sys._MEIPASS
LOADER: importing modules from CArchive
LOADER: extracted struct
LOADER: callfunction returned...
LOADER: extracted pyimod01_os_path
LOADER: callfunction returned...
LOADER: extracted pyimod02_archive
LOADER: callfunction returned...
LOADER: extracted pyimod03_importers
LOADER: callfunction returned...
LOADER: Installing PYZ archive with Python modules.
LOADER: PYZ archive: out00-PYZ.pyz
LOADER: Running pyiboot01_bootstrap.py
LOADER: Running pyi_rth__tkinter.py
LOADER: Running pyi_rth_qt5.py
Traceback (most recent call last):
File "site-packages\PyInstaller\loader\rthooks\pyi_rth_qt5.py", line 56, in <m
odule>
File "c:\dvlp\python27\Lib\site-packages\PyInstaller\loader\pyimod03_importers
.py", line 546, in load_module
ImportError: DLL load failed: 找不到指定的模块。
Failed to execute script pyi_rth_qt5
LOADER: OK.
LOADER: Cleaning up Python interpreter.
我该怎么办?
答案 0 :(得分:1)
我找到了原因。它太愚蠢了,我忘了安装vc运行时libiray。 安装后,它运行良好。
但我无法在XP上工作,我认为原因是Qt5.7.1 msvc 2015不支持XP。
如何从支持XP的Qt5.7.1中编译PyQt5是另一个问题。