Hi,

I am wanting to package an app that uses QtWebEngine from Qt 5.5 for OS X and
for Windows. A minimal example is appended to this message.

I will try to add support for this if I can but there are a few things that are
confusing me, one of which is that there are many messages in the debug output
similar to this:

21264 DEBUG: Analyzing
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib
21289 ERROR: Can not find path ./QtGui.framework/Versions/5/QtGui (needed by
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib)
21290 ERROR: Can not find path ./QtWidgets.framework/Versions/5/QtWidgets
(needed by
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib)
21291 ERROR: Can not find path ./QtDBus.framework/Versions/5/QtDBus (needed by
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib)
21291 ERROR: Can not find path ./QtCore.framework/Versions/5/QtCore (needed by
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib)
21292 ERROR: Can not find path
./QtPrintSupport.framework/Versions/5/QtPrintSupport (needed by
/Users/glenn/rp/thirdparty/qt-everywhere-opensource-src-5.5.0/qtbase/plugins/platforms/libqcocoa.dylib)

This is saying that several Qt framework libraries can't be found, but they seem
to be getting packaged anyway. How are they being found?

Glenn

--- Example app ---

import sys
from PyQt5 import QtWidgets
from PyQt5 import QtCore
from PyQt5.QtWebEngineWidgets import QWebEngineView

app = QtWidgets.QApplication(sys.argv)
mainWindow = QtWidgets.QMainWindow()

centralWidget = QtWidgets.QWidget()
layout = QtWidgets.QHBoxLayout()
centralWidget.setLayout(layout)
mainWindow.setCentralWidget(centralWidget)

wv = QWebEngineView(centralWidget)
layout.addWidget(wv)

mainWindow.show()

wv.load(QtCore.QUrl("http://pyinstaller.org";))

app.exec_()

-- 
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/pyinstaller.
For more options, visit https://groups.google.com/d/optout.

Reply via email to