I want to know how to prohibit multiple execution using pyinstaller
the command I use to have the exe is
pyinstaller -w -F --hidden-import "babel.numbers" --icon=images/look.ico App.py
Know this works fine but when executing multiple times many instance of the same application will start at the same time.
I want to have one instance of the application even run the exe multiple times