How to use PyUpdater

Viewed 259

I Have a main.py for my tkinter GUI app. I export it in a standalone.exe with Pyinstaller. I want that when I start the .exe to update the .exe if a new version was deployed in the directory where I export my program. Apparently we can do that with PyUpdater but I didn't find how on StackOverflow.

1 Answers

If you're trying to push updates/patches to a frozen python program, read this explanation in the PyUpdater documentation.

Instead of attempting make your app auto-update (i.e. push updates to frozen apps) a much more straightforward approach would be to use Inno Setup.

Related