pyinstaller get .exe code example
Example 1: how to make a python exe
pip install pyinstaller
cd YourFilePath
pyinstaller --onefile YourFileName
Example 2: pyinstaller dmg on mac
pyinstaller myscript.py
pip install pyinstaller
cd YourFilePath
pyinstaller --onefile YourFileName
pyinstaller myscript.py