PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. PyInstaller reads a Python script written by you. It analyzes your code to discover every other module and library your...
Ensure that __main__ is always in the list of modules to exclude, to prevent a program or a library that attempts to import __main__ from pulling PyInstaller itself into frozen application bundle. (:issue:`7956`) Fix :func:`PyInstaller.utils.hooks.collect_entry_point` so that it ...
Ensure that __main__ is always in the list of modules to exclude, to prevent a program or a library that attempts to import __main__ from pulling PyInstaller itself into frozen application bundle. (:issue:`7956`) Fix :func:`PyInstaller.utils.hooks.collect_entry_point` so that it...
Ensure that __main__ is always in the list of modules to exclude, to prevent a program or a library that attempts to import __main__ from pulling PyInstaller itself into frozen application bundle. (:issue:`7956`) Fix :func:`PyInstaller.utils.hooks.collect_entry_point` so that it ...
Ensure that __main__ is always in the list of modules to exclude, to prevent a program or a library that attempts to import __main__ from pulling PyInstaller itself into frozen application bundle. (:issue:`7956`) Fix :func:`PyInstaller.utils.hooks.collect_entry_point` so that it r...
Ensure that __main__ is always in the list of modules to exclude, to prevent a program or a library that attempts to import __main__ from pulling PyInstaller itself into frozen application bundle. (:issue:`7956`) Fix :func:`PyInstaller.utils.hooks.collect_entry_point` so that it ...
The user can run the packaged app without installing a Python interpreter or any modules. Documentation: https://pyinstaller.readthedocs.io/ Website: http://www.pyinstaller.org/ Code: https://github.com/pyinstaller/pyinstaller Donate: https://www.bountysource.com/teams/pyinstaller Bitcoin: 1JUFj...
New arguments excludedimports to exclude Python modules in import hooks. New argument binaries to bundle dynamic libraries in .spec file and in import hooks. New argument datas to bundle additional data files in .spec file and in import hooks. A lot of internal code refactoring. Test suit...
Do not exclude setuptools.py27compat and setuptools.py33compat as they are required by other setuptools modules. (:issue:`#5979`) Switch the library search order in ctypes hooks: first check whether the given name exists as-is, before trying to search for its basename in sys._MEIPASS (inste...
New arguments excludedimports to exclude Python modules in import hooks. New argument binaries to bundle dynamic libraries in .spec file and in import hooks. New argument datas to bundle additional data files in .spec file and in import hooks. A lot of internal code refactoring. Test suite mig...