我使用Anaconda 5.3.0和Python 3.7。
已经创建了一个应用程序,我想用Pyinstaller
创建一个可执行文件,这种情况是我错过了以下错误:
异常:找不到现有的PyQt5插件目录路径 已检查: C:/ Miniconda3 / conda-bld / qt_1535195524645 / _h_env / Library / plugins
答案 0 :(得分:0)
如果要使用pyinstaller,则必须:
pyinstaller [name_of_your_python_file]
答案 1 :(得分:0)
在anaconda命令提示符下,尝试pip install PyQt5
。它为我解决了这个问题。
答案 2 :(得分:0)
根据this GitHub error report,有两种主要解决方案:
pip install PyQt5
以安装模块--exclude-module PyQt5
,以防止pyinstaller
尝试包含标志后者似乎对我有用。