Open In App

Convert Python Code to a Software to Install on Windows Using Inno Setup Compiler

Users are only given the installer for any kind of software, companies didn’t give the source code file to the user. Although some open source software is available with its source code. We can also make an installer from our python source code so that you don’t have to share your source code.Write your python code using any graphical library, i am here using Tkinter and we will convert it into installer software in windows 10 using Inno setup compiler. To converting .py to .exe, you can visit Python to exe Conversion.

Steps To Make Installer From .py File

Converting .exe to setup installer: This step involves following series for steps to be followed. Step 1: Download inno setup software.Step 2: Choose to Create new script file using the Script Wizard. Step 3: Fill Application Information. Step 4: Add files and folders and click on Next. Here we have to add the .exe file which we had made from the python code using pyinstaller. After browsing the exe file also add the folder in which this file is present. Step 5: Select options for Application shortcuts and Click on Next. Step 6: Application documentations: These depend on you, if you want to use this software as commercial software then you can fill them otherwise leave them as it is. Click Next. Step 7: Select Setup language. Step 8: Compile setup: Here you have to set the folder for output setup to be stored. If want to set a password then fill otherwise leave it. Step 9: Click on Finish. Your installer software for Windows is ready, now you can use it for distribution.

Article Tags :