With the help of this development users can convert Python scripts to executable files. Moreover, it is possible to package modules and dependencies into folders.
PyInstaller
PyInstaller is a Windows utility that is oriented toward Python programmers. It provides instruments for interacting with scripts and modules.
Setup
You can use pip to integrate PyInstaller into the system. Specific commands for the terminal interface are available in the official online documentation. All associated files and libraries will be downloaded automatically during the installation process.
Main functionality
This software offers users tools for combining Python scripts and modules into self contained executables. It is possible to perform all operations via the command line interface. No additional configuration is needed. There are instruments for embedding custom dependencies into the project and freezing individual scripts.
After performing the conversion a new folder called DIST will be automatically created in the same location as your script. The directory contains an executable file that is ready to be distributed. Additionally, you can insert multiple modules into the finished package to enhance its capabilities.
It is worth mentioning that PyInstaller is a cross platform application and can be run on Windows, Mac OS and Linux computers.
Features
- free to download and use;
- lets you convert Python scripts and modules to executable files;
- it is possible to perform all operations via the command line interface;
- users can embed custom dependencies into the package;
- compatible with all modern versions of Windows.