python file to exe online code example
Example 1: how to convert .py file to .exe
Hold shift and right click where your python file is located
and then type
pyinstaller 'fileName.py'
to convert to a simple exe file the exe file will be in your dist folder
pyinstaller --onefile 'fileName.py'
to convert to a onefile exe file the exe file will be in your dist folder
pyinstaller -w --onefile 'fileName.py'
to convert to a onefile exe file and the python window will not appear
Example 2: python to exe
Install pip using
pip install pyinstaller
in the directory of the source code file run
pyinstaller <file_name>.py
Example 3: python to .exe online
$ auto-py-to-exe