How To Create An Executable Python Program

Sdílet
Vložit
  • čas přidán 19. 06. 2024
  • In this video I go over how to create an exe and sh (executable) file using the Python Module pyinstaller. This is useful if want to run a Python program without Python being natively installed.
    NOTE: To activate the Python venv run "./NAME_OF_VENV/Scripts/activate"

Komentáře • 9

  • @alinegomes9084
    @alinegomes9084 Před 17 dny +1

    👏👏👏👏

  • @bernard2735
    @bernard2735 Před 15 dny

    Nice clear demo. Thank you. Liked and subscribed.

  • @bevintx5440
    @bevintx5440 Před 12 dny

    Thanks, that was very informative.

  • @al1rios
    @al1rios Před 5 dny +1

    It's normally recommended to create a virtual environment with .venv. For example: python -m venv .venv. This way, the shared environment is invisible and better. great work!!!