Create virtual environment for you python projects

Опубликовано: 23 Июнь 2026
на канале: Faizan Alam
239
2

This video explains how to create virtual environments for your python projects. Python Virtual Environments allow us to separate project-specific dependencies from our global site packages. This is extremely useful if you have to use different versions of libraries for different Python projects.
command :
python -m venv virtual
source virtual/Scripts/activate
Leaving a virtual environment.
deactivate