2 examples for pyinstaller
# 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
# 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