bbfreeze icon indicating copy to clipboard operation
bbfreeze copied to clipboard

bbfreeze needs help to freeze PySide apps on windows

Open fbauer opened this issue 13 years ago • 1 comments

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

fbauer avatar Jul 02 '12 12:07 fbauer

bbfreeze needs help with this on OSX also. It bundles the QT libs but not the libpyside libs

RyanHope avatar Oct 12 '12 15:10 RyanHope