大家好,感谢阅读。我正在使用 pyinstaller 将我的 python 代码打包在一个文件中,但是当我运行我的打包文件时,我收到以下错误:
Traceback (most recent call last):
File "<string>", line 21, in <module>
File "C:\Users\****\Desktop\pyinstaller-2.0\pyinstaller-2.0\PyInstaller\loader\iu.py", line 409, in importHook
ImportError: No module named PyQt4.QtCore
我不知道这个错误告诉我什么,特别是因为我的桌面上没有目录名称 pyinstaller-2.0 并且我根本没有使用 PyQt4。
导入模块:Tkinter, tkFileDialog, tkMessageBox, multiprocessing, os, sys, time, numpy, scipy.weave, pywt, matplotlib.pyplot
我认为这个问题与multiprocessing
,因为我之前没有遇到过这个错误。我使用这个配方来正确实现multiprocessing
模块。