.py to .exe code example
Example 1: how to make a python exe
pip install pyinstaller
cd YourFilePath
pyinstaller --onefile YourFileName
Example 2: code for making an exe file for python
pip install pyinstaller
cd PathOfFile
pyinstaller --onefile -w ScriptName.py
(note that if you are using -w then your python file has to be an application and the file will be inside the "dist" folder)
Example 3: auto-py-to-exe with python3
$ pip install auto-py-to-exe
Example 4: python to exe
pip install pyinstaller
cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
Example 5: 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 6: python to exe
pip install pyinstaller