how to create virtual environment in windows code example

Example 1: create venv in windows

# windows
python -m venv 
# To activate
#C:\Users\..\
.\Scripts\activate.bat

Example 2: activate virtualenv windows

venv\Scripts\activate

Example 3: how to activate virtualenv in windows

for windows
make a directory using mkdir nameofthedirectory
enter the directory using cd
then enter the following :
>pip install virtualenv
then name the virtualenv
>virtualenv somename
then activate the virtualen
on Windows, virtualenv creates a batch file

>\yourvirtuallenname \Scripts\activate.bat

Example 4: create environment python windows 10

python3 -m venv venv

Example 5: 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

Tags:

Misc Example