
PyInstaller Manual — PyInstaller 6.12.0 documentation
Apr 21, 2016 · PyInstaller supports Python 3.8 and newer, and correctly bundles many major Python packages such as numpy, matplotlib, PyQt, wxPython, and others. PyInstaller is tested against Windows, macOS, and Linux.
How to Install PyInstaller — PyInstaller 6.12.0 documentation
How to Install PyInstaller PyInstaller is available as a regular Python package. The source archives for released versions are available from PyPI, but it is easier to install the latest version using pip:
Using PyInstaller — PyInstaller 6.12.0 documentation
PyInstaller bundles the dynamic libraries of tcl and tk into the application at compile time. These are loaded into the bootloader at startup of the application after they have been extracted (if the program has been packaged as an onefile archive).
pyinstaller — PyInstaller 6.12.0 documentation
PyInstaller is a program that freezes (packages) Python programs into stand-alone executables, under Windows, GNU/Linux, macOS, FreeBSD, OpenBSD, Solaris and AIX.
What PyInstaller Does and How It Does It
PyInstaller can bundle your script and all its dependencies into a single executable named myscript (myscript.exe in Windows). The advantage is that your users get something they understand, a single executable to launch.
PyInstaller Manual — PyInstaller 4.2 documentation
Jan 13, 2021 · 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 supports Python 3.5 or newer, and correctly bundles the major Python packages such as numpy, PyQt, Django, wxPython, and others.
PyInstaller Manual — PyInstaller 4.6 documentation
Oct 29, 2021 · PyInstaller supports Python 3.6 or newer, and correctly bundles the major Python packages such as numpy, PyQt, Django, wxPython, and others. PyInstaller is tested against Windows, Mac OS X, and GNU/Linux.
Using PyInstaller — PyInstaller 3.4 documentation
Use PyInstaller to build your application in each environment. Note that when using virtualenv, the path to the PyInstaller commands is: Windows: ENV_ROOT\Scripts; Others: ENV_ROOT/bin; Under Windows, the pip-Win package installs virtualenv and makes it especially easy to set up different environments and switch between them. Under Linux and ...
Using Spec Files — PyInstaller 6.12.0 documentation
PyInstaller builds the app by executing the contents of the spec file. For many uses of PyInstaller you do not need to examine or modify the spec file. It is usually enough to give all the needed information (such as hidden imports) as options to the pyinstaller command and let it run.
Common Issues and Pitfalls — PyInstaller 6.12.0 documentation
This section attempts to document common issues and pitfalls that users need to be aware of when trying to freeze their applications with PyInstaller, as certain features require special care and considerations that might not be obvious when …