3

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.

jottbe
  • 4,228
  • 1
  • 15
  • 31
HAT1412
  • 53
  • 1
  • 5

2 Answers2

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

djvg
  • 11,722
  • 5
  • 72
  • 103
Serge
  • 3,387
  • 3
  • 16
  • 34
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