bbfreeze
bbfreeze copied to clipboard
bbfreeze needs help to freeze PySide apps on windows
on linux , this seems to work:
from bbfreeze import Freezer f = Freezer(includes=['PySide.QtGui', 'PySide.QtCore']) f.addScript("mainwindow.pyw") f()
but on windows, the following is required:
from bbfreeze import Freezer f = Freezer(includes=['atexit', 'pkg_resources', 'PySide.QtGui', 'PySide.QtCore']) f.addScript("mainwindow.pyw") f()
I'm not familiar with recipes, but maybe this could be added as a recipe? Btw., I tested with bbfreeze 1.0.0 and pyside 1.1.0 on python 2.6
bbfreeze needs help with this on OSX also. It bundles the QT libs but not the libpyside libs