his article shows you how to automate the task of creating Python executables via py2exe using Python itself. I call the Python file containing the code makeExe.py. This technique requires only one file, makeExe.py; it creates all other necessary files at run-time. First, a short review on the process of creating a Python executable using py2exe.
Creating a Python Executable
| Editor’s Note: The author recently submitted another method for creating Python executables using a batch file, along with an explanation of how to use it. This new method has been added as the last page of this article, at his request.. |
The following four steps describe the process required to create a Python executable.
- First create a Python script.
- Create a setup file that includes the name of your setup and also the name of the file whose executable you want to create.
- Run your Python script from the command line, for example, python yourFile.py py2exe.
- Creating a new setup file or modifying an existing one each time you need to create an executable is onerous. Wouldn’t it be better to have these steps integrated into one? That’s exactly what the Python sample code for this article, makeExe.py does.
| Author’s Note: You can get py2exe here. You’ll also find the full instructions for using py2exe via that link. |
How the makeExe.py File Works
Listing 1 contains the full contents of the makeExe.py file. When you run this file (you should run it from the Python root directory), it asks the user for a file name, then creates an executable for the specified file (see Figure 1). The short code excerpts that follow explain how the code works.
![]() |
You need to extract the file name (minus the extension) from the file path that the user has specified. The code below assigns that file name to variable package, which you need to create the setup file. For example, if the specified file path is python/somePyFile.py, then at the end of the code fragment, package will hold the value somePyFile.
The next task is to write a setup file containing the commands required to create the executable. The code asks the user for the name of the setup file. If the user simply presses the Enter key, the setup file name defaults to setup.py.
The following code writes that information into the setup file. If the file does not exist, the code creates it. If the file exists, the code asks the user to confirm that it should overwrite the file.
For example, if a user enters the file path python/fader.py, the variable package gets set to fader, and then the setup.py file will contain the following text:
Note that the above data remains in the file only during this stage. You could run the setup.py file manually, but it’s much more convenient to automate that as well. To do that, you need to be able to add py2exe to the command-line for the setup.py file, and then launch it. You can manipulate the command-line via the Python globals() dictionary, which contains information about a number of objects, among which is the sys object. The sys object exposes the argv list, which contains the list of command-line arguments. Using the sys.argv list, you can manipulate (and modify) command-line arguments. The following line appends py2exe to the command-line arguments list; that command-line argument is required to successfully create an executable.
To create the executable, you dynamically execute the file setup.py created earlier using Python’s execfile() method.
The execfile(fileName) method basically performs the following steps:
Calling the execfile() method is equivalent to the preceding three sequential steps; in other words, executing setup.py programmatically is equivalent to running the file setup.py from the command-line with a command-line argument of py2exe, for example:
Finally, the last lines in Listing 1 clear the file setup.py. Thus, after the script executes, setup.py becomes a blank file, ready for the next cycle. When you run py2exe it creates the output executable in the /dist/ Save Yourself Some Time Future Work A Windows Batch File to Automate the creation of Python Executables You can integrate the setup steps using a simple DOS Batch file. The makeExe.bat file is a simple DOS batch file. The batch file makes use of two other files that I call configuration files. These files are simply called 1.txt and 2.txt. You place them in a directory named config. Note that all these files must be present in your Python root directory (the directory where your main Python binary exists), typically a folder such as C:Python22, which is the folder that the following discussion assume is your directory name. Figure 2 shows how your directory structure should look:
If you look at the two text files, you’ll see they couldn’t be simpler: config/1.txt
config/2.txt
You’ll see how these files are used later. Here’s the content of the makeExe.bat batch file.
How MakeExe.bat Works
Note that the batch process creates all temporary files in the /config directory, and that py2exe creates the executable in the /dist/
I hope this simple batch file makes things a wee bit easier. If you have suggestions for improvements, feel free to email me with them. Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience. Related PostsAbout Our Editorial ProcessAt DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere. See our full editorial policy. ![]() 6 Signals Your System Is Sliding Into Operational Drift
Steve Gickling
March 5, 2026
4:56 PM
![]() Six Reasons Your AI Prototype Fails in Production
Rashan Dixon
March 5, 2026
4:46 PM
![]() 7 Early Signs Your AI Guardrails Won’t Hold in Production
Kirstie Sands
March 5, 2026
4:37 PM
![]() How to Scale Search Infrastructure for High-Query Volumes
Sumit Kumar
March 5, 2026
4:21 PM
![]() Technical Influence vs Authority in Engineering Teams
Steve Gickling
March 5, 2026
4:09 PM
![]() Optical Links Challenge Copper In Data Centers
Rashan Dixon
March 5, 2026
3:48 PM
![]() Empathy Guides Rosalyn Engelman’s Partnership
Rashan Dixon
March 5, 2026
3:25 PM
![]() Apple M5 Chips Target On-Device AI
Sumit Kumar
March 5, 2026
2:41 PM
![]() Sophia Space Raises $10 Million Seed
Steve Gickling
March 5, 2026
2:29 PM
![]() Charles Payne Hosts Investor Town Hall
Kirstie Sands
March 5, 2026
2:16 PM
![]() Xiaomi Highlights New Tech At MWC
Steve Gickling
March 5, 2026
2:13 PM
![]() Berkshire Hathaway Q4 Profit Falls Nearly 30 Percent
Deanna Ritchie
March 5, 2026
2:04 PM
![]() Amazon Debuts AI Dynamic Canvas for Sellers
Sumit Kumar
March 5, 2026
9:13 AM
Phones Are Ready For Serious Offline AI
Joe Rothwell
March 5, 2026
8:10 AM
![]() 4 Architectural Decisions That Shape Reliable RAG Systems
Rashan Dixon
March 4, 2026
4:47 PM
![]() OpenAI Chair Sees AI Reshaping Work
Sumit Kumar
March 4, 2026
1:21 PM
![]() Venezuelan Oil Rebranded As Brazilian To China
Steve Gickling
March 4, 2026
1:05 PM
![]() OpenAI Defends Safeguards In Defense Deal
Sumit Kumar
March 4, 2026
12:31 PM
![]() Samsung Brings Phone-Based Door Unlocking
Deanna Ritchie
March 4, 2026
12:21 PM
![]() Smartphones Deliver Net Gains, Data Shows
Steve Gickling
March 4, 2026
10:23 AM
![]() Asking AI Chatbots Changes How We Learn
Rashan Dixon
March 4, 2026
10:10 AM
![]() AI Rekindles Debate Over Photography
Rashan Dixon
March 4, 2026
10:01 AM
![]() 7 Refactor Patterns That Compound Over Years
Kirstie Sands
March 3, 2026
4:49 PM
![]() DOJ Files Link Epstein To Russian Investors
Rashan Dixon
March 3, 2026
4:47 PM
![]() Citadel, Ark Invest Buy ZRO Token
Sumit Kumar
March 3, 2026
4:42 PM
|


























