I'm trying to develop a windows gui app with python and i will distribute that later. I don't know how to set the app for some future releasing updates or bug fix from a server/remotely. How can I handle this problem? Can I add some auto-update future to app? What should write for that in my code and what framework or library should I use? Do pyinstaller/ inno setup have some futures for this? Thanks for your help.
Asked
Active
Viewed 1,349 times
1
-
1Could you use github for this? https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository – Plato77 Mar 05 '20 at 22:30
-
1Does this answer your question? [How to remotely update Python applications](https://stackoverflow.com/questions/6932389/how-to-remotely-update-python-applications) – Gino Mempin Mar 05 '20 at 23:26
1 Answers
1
How about this approach:
- You can use a version control service like github to version control your code.
- Then checkout the repository on your windows machine.
- Write a batch/bash script to checkout the latest version of your code and restart the app.
- Then use the Windows task scheduler to periodically run this script.

Dewald Abrie
- 1,392
- 9
- 21