Comprehensive tutorial on Pyinstaller?

54,569

To Create one executable of your python script or project
create your script or project. To install pyinstaller on Windows type

pip install pyinstaller
Now open command prompt and type the command
pyinstaller --onefile myscripy.py
You will find a dist folder created. Browse dist folder and you will get .exe file of python script.

Share:
54,569
Brandon
Author by

Brandon

Updated on December 05, 2020

Comments

  • Brandon
    Brandon over 3 years

    I'm looking for a tutorial on PyInstaller that will explain things like

    • how to create .pkg files
    • how to include/exclude modules
    • how to include data files inside the install directory.

    I cannot make much sense out of the standard PyInstaller documentation.