解决Unable to find \PyQt5\Qt\translations\qtwebengine_locale和No module named 'PyQt5.QtWebEngineWidgets

场景:
1、使用pyinstaller打包的时候出现Unable to find "E:\anaconda3\lib\site-packages\PyQt5\Qt\translations\qtwebengine_locales" when adding binary and data files.
2、在程序中引用QtWebEngineWidgets的时候

原因:
pyqt5的v5.11及以上版本不再自带PyQtWebEngine,需要自行安装。

解决方案:
1、重新安装pyqt5为5.10版本
pip uninstall pyqt5
pip install pyqt5==5.10

(推荐)2、安装PyQtWebEngine
pip install PyQtWebEngine

注:使用方法2的时候,可能会出现

Could not find a version that satisfies the requirement PyQtWebEgine (from versions: )
No matching distribution found for PyQtWebEgine

首先查看本机环境pyqt5的版本:

pip list
pyOpenSSL                          19.0.0
pyparsing                          2.3.1
PyQt5                              5.14.0
PyQt5-sip                          12.7.2
pyqt5-tools                        5.13.0.1.5
PyQtWebEngine                      5.14.0

所有,我需要找5.14版本的PyQtWebEngine。
直接去官网下载,地址:https://pypi.org/project/PyQtWebEngine/#files
下载了whl文件后,运行命令:

pip install D:\tools\PyQtWebEngine-5.14.0-5.14.2-cp35.cp36.cp37.cp38-none-win_amd64.whl

结束!

你可能感兴趣的:(工具与技巧,自然语言处理)