What I mean is that I have a py file which I have converted to an exe file. So I wanted to know in case I decide to update the py file then how do I make it if I have sent it to someone the same changes occur in his file as well whether the exe or py file.
Asked
Active
Viewed 2,853 times
2 Answers
3
Just send them the new exe file. But if you expect updates to be performed regularly consider adding the auto-update logic to your program using the PyUpdater library
Auto updating a python executable generated with pyinstaller
0
Put your version of the program on a file share, or make it otherwise available in the internet and build in an update check in the program. So that it checks the URL for a new version everytime it is started. I guess this is the most common way to do something like that.

jottbe
- 4,228
- 1
- 15
- 31