Skip to content Skip to sidebar Skip to footer

How To Use Qtwebengine In Qml

I want to use QtWebEngine in QML with PyQT. I am trying to run simple example. import sys from PyQt5.QtCore import QUrl from PyQt5.QtWidgets import QApplication, QWidget from PyQt5

Solution 1:

Since PyQt 5.12 QtWebEngineWidgets has been separated into another package called PyQtWebEngine, so you have to install it with:

python -m pip install PyQtWebEngine

Post a Comment for "How To Use Qtwebengine In Qml"