How to update an py made exe file from my pc to people I have sent it to?

Viewed 1103

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.

2 Answers

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.

Related