how to compilep python to exe code example

Example 1: how to make a python exe

pip install pyinstaller

cd YourFilePath

pyinstaller --onefile YourFileName

Example 2: compile python to pyc

import py_compile
py_compile.compile('yourFile.py')
# the compiled file will be saved as yourfile.pyc in a __pycache__ folder, which will be created the same folder as yourfile.py

Example 3: python to exe

pip install pyinstaller

cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
# a .exe file is created in the FullPathOfFile\dist