Create an installer for your application using TkInstaller!
- Create a
zipor7zarchive containing your application, as well as any data files you need to include. - Modify the
installer_config.inito point to your archive, and change any settings necessary. - Next you can test the installer by executing it with your Python environment.
- If it succeeds in installing your app to the location of your choosing, run the included
build.pyto package it all up. You can then distribute the resulting installer.EXEhowever you desire.
- Change the
title,version, and logo of your application by modifying theinstaller_config.ini. - The installer uses placeholders for
Local ProgramsandProgram Files, it is suggested that you don't change the@variable@parts unless you know what you're doing. - Make sure to set
compressed_app_pathto the name of your compressed archive containing your application. Ensureapp_exe_namematches the EXE you're trying to install, or the "Run after install" option will fail. - You can change the color of the installer "Finished" screen by changing
finished_logo_backgroundto any RGB value.
Note:
finished_logo_backgrounddoes not accept Alpha transparency values, and only accepts RGB.