schmir / bbfreeze

UNMAINTAINED
http://pypi.python.org/pypi/bbfreeze/
92 stars 22 forks source link

bbfreeze needs help to freeze PySide apps on windows #12

Open fbauer opened 12 years ago

fbauer commented 12 years ago

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

RyanHope commented 11 years ago

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