No module named 'PyQt5.QtWebEngineWidgets'

转载于 https://blog.csdn.net/jenas999/article/details/82974811

环境:
python 3.6.5
pyqt5

出错提示:
No module named 'PyQt5.QtWebEngineWidgets'

原因:
原文链接:https://www.riverbankcomputing.com/software/pyqt/download5
关键句:

Note that for v5.11 and later the 32-bit Windows wheels do not contain
the WebEngine modules.

翻译:请注意,对于v5.11及更高版本,32位Windows轮盘不包含WebEngine模块。

解决:
【方法一】 指定安装5.10.1版本的pyqt5
pip install pyqt5==5.10.1

【方法二】 单独安装WebEngine,安装命令为:
pip install PyQtWebEngine

我的环境:

python 3.7
pyqt5 5.13.2

扫描二维码关注公众号,回复: 12309281 查看本文章

感觉没必要回退版本,我直接安装了 pip install PyQtWebEngine,完美解决

猜你喜欢

转载自blog.csdn.net/weixin_41822224/article/details/102954893