How to use PyUpdater

2.7k Views Asked by At

I Have a main.py file for my Tkinter app. I export it to 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

There are 1 best solutions below

0
On BEST ANSWER

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.