pythonImportError: cannot import name 'QWebView'
Posted 芽衣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pythonImportError: cannot import name 'QWebView'相关的知识,希望对你有一定的参考价值。
报错原因:
WebEngine和WebKit混合在一起使用
解决方法:
下面两种写法选其中一种写法。
WebEngine:
from PyQt5.QtWebEngineWidgets import QWebEnginePage
from PyQt5.QtWebEngineWidgets import QWebEngineView
WebKit:
from PyQt5.QtWebKitWidgets import QWebPage
from PyQt5.QtWebKitWidgets import QWebView
参考来自:
https://stackoverflow.com/questions/48848061/python-pyqt5-cannot-import-name-qwebview
以上是关于pythonImportError: cannot import name 'QWebView'的主要内容,如果未能解决你的问题,请参考以下文章
python ImportError:无法从'faker'导入名称'Faker'