I just used py2exe to compile my python app that uses pyqt. The size of it is 23MB. The Pyqt libraries (PyQt4.QtCore.pyd, PyQt4.QtGui.pyd, QtCore4.dll and QtGui4.dll) sum more than 17MB. Is there a way to use QT with a reduced size?
Thank you!
I just used py2exe to compile my python app that uses pyqt. The size of it is 23MB. The Pyqt libraries (PyQt4.QtCore.pyd, PyQt4.QtGui.pyd, QtCore4.dll and QtGui4.dll) sum more than 17MB. Is there a way to use QT with a reduced size?
Thank you!
PyQt is essentially a wrapper around Qt. In theory it should be possible to use Qt without PyQt, but you'd have to make the bindings yourself.