2 examples for pyinstaller

{{ score }}
  # creates binaries using a Python script with a valid entry point
pyinstaller 
        
{{ score }}
  # specify an icon to be used by the script after it's compiled
pyinstaller --icon=/path/to/icon ./script.py

# disable debug mode (hide terminal/command propmt window at compiled program runtime)
pyinstaller -w ./script.py