How to convert .exe file to windows setup wizard

痞子三分冷 提交于 2021-02-05 05:31:29

问题


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?


回答1:


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




回答2:


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



来源:https://stackoverflow.com/questions/63371071/how-to-convert-exe-file-to-windows-setup-wizard

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!