py to exe online converter 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: 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

# {(NOTE: DON'T DO THIS IF YOU PROGRAM IS CONSOLE BASED)}
# {(IF YOU HAVE MADE A GAME USING PYGAME OR USING ANYTHING ELSE
#   WHERE CONSOLE IS NOT USED THEN IT'S FINE)}
# For more help you can click the link bellow
# It's 12 min tutorial of codewithharry

Example 3: auto py to exe\

$ pip install auto-py-to-exe

Example 4: autopytoexe

# Pip install
$ pip install auto-py-to-exe
$ auto-py-to-exe

# clone install
$ git clone https://github.com/brentvollebregt/auto-py-to-exe.git
$ python -m pip install -r requirements.txt
$ cd auto-py-to-exe
$ python setup.py install

$ auto-py-to-exe

Example 5: autopytoexe

$ auto-py-to-exe

Tags:

Misc Example