I know I can install any Qt5 module using the Qt Maintenance Tool, which I used before. However, in the latest Ubuntu (18.04), I've stumbled upon a problem: my app uses QNetworkManager, and SSL-connections are now not working, apparently because Qt version I was using was built with another SSL version. I googled for this issue, and found that as a solution, it is advised to use "native" Qt install from online repositories. I did that, but now I cannot even qmake
the project file, and the error is:
Project ERROR: Unknown module(s) in QT: webenginewidgets
(my app uses QWebView, so I have QT += webenginewidgets
in the .pro-file).
Ok, I've made sudo apt install
for everything I could find related to "webview/webengine" in Qt (libqt5webengine5
, libqt5webengine-data
, libqt5webview5
, libqt5webenginecore5
, libqt5webenginewidgets5
, libqt5webview5-dev
), but this made no any difference at all: still, unknown module in Qt.
So - how do I install Qt5 webenginwidgets module from repositories in Ubuntu 18.04?