how to install python virtual environment in windows 10 code example

Example 1: create environment python windows 10

python3 -m venv venv

Example 2: how to create virtualenv in specific directory in windows

Create a Virtual Python Environment
cd to your project directory and run virtualenv to create the new virtual environment.

The following commands will create a new virtual environment under my-project/my-venv.

cd my-project
virtualenv --python C:\Path\To\Python\python.exe venv

Example 3: activate virtual environment python windows 10

cd C: Path to virtual environment> .\activate

Tags:

Misc Example