Convert Python File to EXE

How To Convert Python File to EXE

April 22nd 2020

Convert Python to EXE

In this article, you will learn how you can convert .py file to .exe file. Follow the below steps for the same.

Step 1: Install the library pyinstaller.Type below command in the command prompt.

pip install pyinstaller

Step 2: Go into the directory where your ‘.py’ file is located.

Step 3:Press shift⇧ button and simultaneously right click at the same location. You will get below box.

You will get a window shown below.

Step 5:Type the command given below in that PowerShell window.

pyinstaller --onefile -w 'filename.py'

My ‘.py’ file name is ‘1’.See below:

In case you get an error at this point in the PowerShell window like this:The correction while typing the above command:

The correction while typing the above command:

.\pyinstaller --onefile -w 'filename.py'

Step 6:After typing the command ‘Hit the Enter’.It will take some time to finish the process depending on the size of the file and how big is your project.After the processing has been finished, the window will look as below:

Step 7: See the directory it should look like this:

‘build’ folder and ‘1.spec’ is of no use. You can delete these if you want, it will not affect your ‘.exe’ file.

Step 8:Open ‘dist’ folder above. Here you will get your ‘.exe’ file.

Right-click on the file and check the properties.

Stay Tuned!Previously published at http://gajeshsnaik.codes/convert-python-to-exe/

Reference : https://hackernoon.com/how-to-convert-python-file-to-exe-r2ac3yqp

Last updated