How To Create An Executable Python Program

Поделиться
HTML-код
  • Опубликовано: 19 июн 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"

Комментарии • 9

  • @bernard2735
    @bernard2735 28 дней назад

    Nice clear demo. Thank you. Liked and subscribed.

  • @al1rios
    @al1rios 18 дней назад +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!!!

  • @alinegomes9084
    @alinegomes9084 Месяц назад +1

    👏👏👏👏

  • @bevintx5440
    @bevintx5440 24 дня назад

    Thanks, that was very informative.