How To Create An Executable Python Program

preview_player
Показать описание
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"
Рекомендации по теме
Комментарии
Автор

Nice clear demo. Thank you. Liked and subscribed.

bernard
Автор

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!!!

alrios
Автор

If I create a virtual environment and then compile it into an executable using PyInstaller, will that .exe file be flagged as a virus by antivirus software?

ziko_ruby