I've created a Python app that works perfectly on Mac but I need to be able to run it on Windows.
So far, I'm stuck with my QWebEngineView
not displaying anything. I've created a small piece of code to test but so far, it only shows a blank window on Win10 while it runs perfectly on MacOS:
from PySide2.QtCore import QUrl
from PySide2.QtWebEngineWidgets import QWebEngineView
from PySide2.QtWidgets import QApplication
APP = QApplication()
web_widget = QWebEngineView()
my_url = QUrl("http://www.google.com")
web_widget.load(my_url)
web_widget.show()
APP.exec_()
It almost looks like Win10 is unable to load/display this webpage, like it's missing some king of component to display this webview... What am I doing wrong?