Skip to main content

PyInstaller bundles a Python application and all its dependencies into a single package.

Project description

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.

Documentation:

https://pyinstaller.readthedocs.io/

Website:

http://www.pyinstaller.org/

Code:

https://github.com/pyinstaller/pyinstaller

PyInstaller reads a Python script written by you. It analyzes your code to discover every other module and library your script needs in order to execute. Then it collects copies of all those files – including the active Python interpreter! – and puts them with your script in a single folder, or optionally in a single executable file.

PyInstaller is tested against Windows, Mac OS X, and GNU/Linux. However, it is not a cross-compiler: to make a Windows app you run PyInstaller in Windows; to make a GNU/Linux app you run it in GNU/Linux, etc. PyInstaller has been used successfully with AIX, Solaris, FreeBSD and OpenBSD, but is not tested against them as part of the continuous integration tests.

Main Advantages

  • Works out-of-the-box with any Python version 3.6-3.9.

  • Fully multi-platform, and uses the OS support to load the dynamic libraries, thus ensuring full compatibility.

  • Correctly bundles the major Python packages such as numpy, PyQt5, PySide2, Django, wxPython, matplotlib and others out-of-the-box.

  • Compatible with many 3rd-party packages out-of-the-box. (All the required tricks to make external packages work are already integrated.)

  • Libraries like PyQt5, PySide2, wxPython, matplotlib or Django are fully supported, without having to handle plugins or external data files manually.

  • Works with code signing on OS X.

  • Bundles MS Visual C++ DLLs on Windows.

Installation

PyInstaller is available on PyPI. You can install it through pip:

pip install pyinstaller

Requirements and Tested Platforms

  • Python:

  • 3.6-3.9

  • tinyaes 1.0+ (only if using bytecode encryption). Instead of installing tinyaes, pip install pyinstaller[encryption] instead.

  • Windows (32bit/64bit):

  • PyInstaller should work on Windows 7 or newer, but we only officially support Windows 8+.

  • Support for Python installed from the Windows store without using virtual environments requires PyInstaller 4.4 or later.

  • GNU/Linux (32bit/64bit)

  • ldd: Console application to print the shared libraries required by each program or shared library. This typically can be found in the distribution-package glibc or libc-bin.

  • objdump: Console application to display information from object files. This typically can be found in the distribution-package binutils.

  • objcopy: Console application to copy and translate object files. This typically can be found in the distribution-package binutils, too.

  • Mac OS X (64bit):

  • Mac OS X 10.13 (High Sierra) or newer.

Usage

Basic usage is very simple, just run it against your main script:

pyinstaller /path/to/yourscript.py

For more details, see the manual.

Untested Platforms

The following platforms have been contributed and any feedback or enhancements on these are welcome.

  • FreeBSD

  • ldd

  • Solaris

  • ldd

  • objdump

  • AIX

  • AIX 6.1 or newer. PyInstaller will not work with statically linked Python libraries.

  • ldd

  • PowerPC GNU/Linux (Debian)

Before using any contributed platform, you need to build the PyInstaller bootloader, as we do not ship binary packages. Download PyInstaller source, and build the bootloader:

cd bootloader
python ./waf all

Then install PyInstaller:

python setup.py install

or simply use it directly from the source (pyinstaller.py).

Support

See http://www.pyinstaller.org/support.html for how to find help as well as for commercial support.

Changes in this Release

You can find a detailed list of changes in this release in the Changelog section of the manual.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyinstaller-4.5.1.tar.gz (2.7 MB view details)

Uploaded Source

Built Distributions

pyinstaller-4.5.1-py3-none-win_amd64.whl (1.9 MB view details)

Uploaded Python 3 Windows x86-64

pyinstaller-4.5.1-py3-none-win32.whl (1.9 MB view details)

Uploaded Python 3 Windows x86

pyinstaller-4.5.1-py3-none-macosx_10_13_universal2.whl (1.6 MB view details)

Uploaded Python 3 macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file pyinstaller-4.5.1.tar.gz.

File metadata

  • Download URL: pyinstaller-4.5.1.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1.tar.gz
Algorithm Hash digest
SHA256 30733baaf8971902286a0ddf77e5499ac5f7bf8e7c39163e83d4f8c696ef265e
MD5 cd1fab890e538ed62ac9121e043632e3
BLAKE2b-256 a9d99fdfb0ac2354d059e466d562689dbe53a23c4062019da2057f0eaed635e0

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-win_amd64.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 aae456205c68355f9597411090576bb31b614e53976b4c102d072bbe5db8392a
MD5 6608fc674b0b9e188ef50e983ef7ae77
BLAKE2b-256 12a991a182d5b2541d8b89396f4371151e412246f8e8d6e65954871548a2a14b

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-win32.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-win32.whl
Algorithm Hash digest
SHA256 fed9f5e4802769a416a8f2ca171c6be961d1861cc05a0b71d20dfe05423137e9
MD5 3e8091bcd21d1996079a9f5d5659cba3
BLAKE2b-256 79bafbd0f192e1d711bf391e44a42875fc3ecffaf4529d7d7d9604fc79027327

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c587da8f521a7ce1b9efb4e3d0117cd63c92dc6cedff24590aeef89372f53012
MD5 ac8174c9b07a41eca74fa684324b0e38
BLAKE2b-256 36ebe30b66fd38d80a4d45f2dbfea3f0985002c66aa08b855b61f08bce50891c

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-manylinux2014_i686.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f747b190e6ad30e2d2fd5da9a64636f61aac8c038c0b7f685efa92c782ea14f
MD5 a7d1392afdbdf68449b2d41b99f25dc7
BLAKE2b-256 e860cbfcd60f99c8814bb314910953b4cd56c4bf3a5d8099516066cd839443e8

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d848cd782ee0893d7ad9fe2bfe535206a79f0b6760cecc5f2add831258b9322
MD5 ebcbbe8da98b5869e0e1a52a879b3860
BLAKE2b-256 280d89e847020fe6514dec7d18d1ca78d9b9cbbabfa17f1d38b8122bc9be8d14

See more details on using hashes here.

File details

Details for the file pyinstaller-4.5.1-py3-none-macosx_10_13_universal2.whl.

File metadata

  • Download URL: pyinstaller-4.5.1-py3-none-macosx_10_13_universal2.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3, macOS 10.13+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for pyinstaller-4.5.1-py3-none-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ecc2baadeeefd2b6fbf39d13c65d4aa603afdda1c6aaaebc4577ba72893fee9e
MD5 f56028a3ff6457ee049757b0c44faaba
BLAKE2b-256 bad5331cbbee7aa8f3b62051d8be714e2e8c208536abfe558e61e9c4b09a6ae4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page