DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Traceroute Command in Python and How to Read a Traceroute
  • Building Threat Intelligence Pipelines Using Python, APIs, and Elasticsearch
  • From Indicators to Insights: Automating IOC Enrichment Using Python and Threat Feeds
  • A Scalable Framework for Enterprise Salesforce Optimization: Turning Outcomes Into an Operating System

Trending

  • Bringing Intelligence Closer to the Source: Why Real-Time Processing is the Heart of Edge AI
  • Observability in Spring Boot 4
  • How AI Is Rewriting Full-Stack Java Systems: Practical Patterns with Spring Boot, Kafka and WebSockets
  • Genkit Middleware: Intercept, Extend, and Harden your Gen AI Pipelines
  1. DZone
  2. Coding
  3. Languages
  4. Making a Stand Alone Executable from a Python Script Using PyInstaller

Making a Stand Alone Executable from a Python Script Using PyInstaller

There are a number of tools that can help you execute your Python script, and PyInstaller does an excellent job. Check it out here.

By 
Naurin Idris user avatar
Naurin Idris
·
Oct. 31, 18 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
118.5K Views

Join the DZone community and get the full member experience.

Join For Free

Image title

There are plenty of tools available for converting Python script into an executable. For example, check out:

  • PyInstaller
  • py2exe

For Python 2, I used to prefer py2exe. It's a neat tool that does the trick by making a stand alone executable from a Python script. The one problem I faced was, py2exe used to support only Python 2! Then I moved on to PyInstaller. The good thing is, py2exe now provides support to Python 3 as well! I might share my py2exe experience as well but, that will be in another article.

This article is all about PyInstaller! It's a handy tool that lets you create a .exe file for Windows with only one command! Although I prefer Linux, I had to create executables for Windows all the time targeting various Windows distributions (yes, it was the clients’ requirement).

Lets explore the process of creating executable using PyInstaller.

Installation

Hassle free installation, all you have to do is to run the following command (if you have already installed Python) and that’s it!

pip install pyinstaller

Note: If you are working on Windows. You might need to install PyWin32 as well! Download it from here. And, if you need additional help, you can always head right to the official documentation of PyInstaller.

If you are using a different package management tool such as conda (for Anaconda) then you will have to use the following commands instead:

conda install -c conda-forge pyinstallerconda install -c anaconda pywin32

Please, find suitable installation documentation for your package management tool for more details.

Create an Executable

Now that you have installed PyInstaller, all you have to do is find the Python script that you want to convert to an executable. Just navigate to your Python script directory. Now, open up your Terminal/Command Prompt in the script directory and, test your Python script:

python your_script.py

Make sure the script works as expected. Now, the command I prefer for compiling the script into executable is the following one.

Run the command:

pyinstaller --onefile <your_script_name>.py

This will create a standalone executable in the dist directory of your script folder. Don’t worry, if the folder doesn’t exist it will create one automatically.

Notice that we passed an argument “ — onefile ”. This argument tells PyInstaller to create only one file. If you don’t specify this, the libraries will be distributed as a separate file along with the executable.

Note: The format/extension of the executable will depend on which operating system you used for compilation. For example, if you run the PyInstaller command on Windows the executable file will be .exe. If you run it on Linux the extension will depend on the distribution you are using.

You can only create executable for your Operating system, i.e. the Operating system you used to compile the executable.

For example, it is not possible to create a Windows executable (.exe) by directly running a Pyinstaller command on a Linux Distribution and vice versa. (If you know a way to do it, feel free to comment).

What you can do is run Virtualbox or similar application to run the OS virtually and, create executable in that virtual os and export it later. Also, Wine works as well! (Though, I didn’t try it myself)

If your Python script depends on additional executables, for example, phantomjs or chromedriver, you may have to put these executable in the same directory of your executable!

For these type of dependencies, when I’m working on Windows Platform. I usually package them using NSIS.

The procedure is like below (Assuming NSIS already installed):

  • Create a ZIP of all the necessary files i.e script’s executable, dependencies, readme etc.
  • run NSIS
  • Click on the make installer from zip archive option.
  • Select the zip file
  • Provide a name and create the Installer.exe/Setup.exe file.

This executable is basically an extractor that extracts all the necessary file in a directory. Cool!

Valuable Resources:

  • Read the answers of this Stack Overflow question
  • PyInstaller Source Code
  • PyInstaller Supported Python Packages
  • py2exe official tutorial
  • Read reddit discussion on this article

Thanks for reading this far! If you liked this article please, feel free to clap and, spread the love!

Executable Python (language) operating system

Opinions expressed by DZone contributors are their own.

Related

  • Traceroute Command in Python and How to Read a Traceroute
  • Building Threat Intelligence Pipelines Using Python, APIs, and Elasticsearch
  • From Indicators to Insights: Automating IOC Enrichment Using Python and Threat Feeds
  • A Scalable Framework for Enterprise Salesforce Optimization: Turning Outcomes Into an Operating System

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook