how to make a python executable on windows code example
Example 1: python to exe
pip install pyinstaller
cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
# a .exe file is created in the FullPathOfFile\dist
Example 2: convert .py to .exe using pyinstaller
! pip install pyinstalller
! pyinstaller --onefile pythonScriptName.py