I have a script in python that I turned into a .exec with PyInstaller using this line:
pyinstaller.exe --onefile <path_to_python_file>
And it worked just fine.
After that I changed my script and hoped that the executable would update itself automatically but it was not the case.
There is a way to update the .exec without deleting the old one and creating a new one from the modified script?