bbfreeze icon indicating copy to clipboard operation
bbfreeze copied to clipboard

UNMAINTAINED

Results 11 bbfreeze issues
Sort by recently updated
recently updated
newest added

When trying to use bbfreeze I get the following error: File "/usr/local/lib/python2.7/dist-packages/bbfreeze-1.1.2-py2.7.egg/bbfreeze/freezer.py", line 590, in **call** if not self._handleRecipes(): File "/usr/local/lib/python2.7/dist-packages/bbfreeze-1.1.2-py2.7.egg/bbfreeze/freezer.py", line 483, in _handleRecipes if x(self.mf): File "/usr/local/lib/python2.7/dist-packages/bbfreeze-1.1.2-py2.7.egg/bbfreeze/recipes.py", line...

While freezing, a bunch of errors like these occur: BFD: /dist/stPzWg8A: Not enough room for program headers, try linking with -N strip:/dist/stPzWg8A: Bad value However the generated binary seems to...

…le descriptors. You can't call Freeze instances twice in a row on windows because the mmap is opened on `console.exe` (And prevents it from being deleted or moved after the...

Matplotlib in the latest versions returns the backend as a unicode string. This breaks when it is used in the import_hook (in the filename replacement). By encoding it to a...

I use freeze script as folloing: ``` python from bbfreeze import Freezer f = Freezer("dist", includes=("cffi",), excludes=("_tkinter", "pyexpat")) f.addScript("host_server.py") f() # starts the freezing process ``` It generate dist files...

Like `certifi` module has an extra `.pem` file, and that file must be bundled along with the module.

when i frozen a python test.py --- import sys print sys.exec_prefix --- i have 2 answer for my way : 1 : python test.py : /usr 2 : (after bbfreeze)...

I have a python setup.py ``` python # setup.py from setuptools import setup, find_packages setup( name='print-workflow', version='0.1.0', author='Hogarth Worldwide', author_email='[email protected]', packages=find_packages('src', exclude=('tests',)), package_dir={'': 'src'}, include_package_data=True, install_requires=[ 'celery', 'jinja2', 'setuptools', ],...

Ideally we should be able to distribute optimized code, a.k.a. PYO files instead of PYC files.

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 =...