I have installed qtwebengine using pip3 install PyQtWebEngine , and installation finished successfully; But when I'm going to load any html file or any site the webengine seems to be not there, also the place where the webengine seems to be empty. (it must be a white box)
Is there any additional packages needed?
Please note that, the same code works fine at manjaro and ubuntu.
code sample.
self.atmo_visio = QtWebEngineWidgets.QWebEngineView(self.atmo_visio_frame)
self.file_path = os.path.abspath(os.path.join(os.path.dirname("icons/"), "html.html"))
self.local_url = QtCore.QUrl.fromLocalFile(self.file_path)
self.atmo_visio.load(self.local_url)