Making Executables Installable with Inno Setup
Posted on Fri 08 November 2019 in Software Development • 1 min read
Following on from last week's post on making executable GUIs with Gooey, this post will cover how to make the executables we have packaged up into installable files so our users can run them easily.
Once we have created the executable file for our GUI (which will be located in the dist folder:
Now we are going to use a program called Inno Setup, which can be downloaded from: http://www.jrsoftware.org/isinfo.php.
After you've installed Inno Setup, run these commands:
- Select create a new script file using the Script Wizard
- Fill in the application information
- Leave defaults
- Select the *.exe file found in the dist folder
- Select shortcut choices
- Add any license or information files
- Select install mode
- Select the languages
- Provide compiler settings and icon for installable
- Leave default
- Compile new script
- Share around the executable installer!
Once installed, it will now act and behave like any other software installed on your computer!