Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert .exe file to windows setup wizard

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?

like image 625
Binamra Avatar asked Aug 12 '20 06:08

Binamra


2 Answers

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

Cheers

like image 125
Delrius Euphoria Avatar answered Oct 09 '22 07:10

Delrius Euphoria


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

like image 41
pitamer Avatar answered Oct 09 '22 07:10

pitamer