pyqt 新版5.13使用WebEngine
请注意,对于v5.11及更高版本,32位Windows轮盘不包含WebEngine模块。安装64位python自带解决方法:
【方法一】 指定安装5.10.1版本的pyqt5
pip install pyqt5==5.10.1
【方法二】 单独安装WebEngine,安装命令为:
pip install PyQtWebEngine
然后
from PyQt5.QtWebEngineWidgets import *
# 设置浏览器
self.browser = QWebEngineView()
url = 'http://www.xxgis.com'
# 指定打开界面的 URL
self.browser.setUrl(QUrl(url))
页:
[1]