I am trying to package my python script so that I can share it with users who do not have python installed. I use
pyinstaller --onefile matcher.py
to generate the .exe file as expected. However, when I attempt to run that .exe file I am presented with the following prompt, which shows quickly before closing itself.
I am at a loss for what I need to do in order for the packaged python script to run correctly. Can someone help?
Thanks