How to convert .exe file to windows setup wizard

Question:

I was creating an app through Tkinter. And after making I converted into .exe file using pyinstaller. It is good but I want to make it more professional. Like when we download any application from internet and open it it opens a setup wizard with license agreements and where to put all the files. I do not want to share my exe file but want to share my setup file. So, that when they click it will show license agreements, the path to save, and a few more like a real setup wizard.

Please help me how can I create that in Tkinter python?

Asked By: Binamra

||

Answers:

A popular and simple option is using NSIS, as explained here.

Answered By: pitamer

NSIS is one of the many options available but i would recommend Inno Setup because it is actually a simple and powerfull setup wizard, I have been using NSIS and found out about Inno Setup recently and have been using it since then. It has the License agreement parts and all that we are looking to add into.

Hope this is what you want. Do let me know if any errors.

Video example on making a setup wizard

This is not sponsored.

Answered By: Delrius Euphoria
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.