How can I have a kivy app restart after downloading a new version of itself?
I'm developing a python GUI app that uses the kivy framework, I just added an auto-update feature to my app that securely downloads, verifies, and extracts a newer version of itself. After these upgrade steps are complete, I present the user with a modal dialog asking them to click a button to restart the app to the newer version.
How can I get that button to actually close the window and execute the new kivy app?
In python, you can use
os.execv()
to exit the current process and replace it with another execution.The following commands demonstrate how to do this with kivy in Debian 10:
When
./helloWorldOne.py
is executed above, a window (the "old version") appears. After a 1 second delay, therestart()
function is executed (which instead could be bound to a button)--which callsos.execv()
.The
helloWorldOne.py
app window is closed and replaced with thehelloWorldTwo.py
app window.