how to find virtual environment path in windows code example
Example 1: venv activate windows
cd_yourdir
>pip install virtualenv
>virtualenv "__"
E.G.
> virtualenv venv
>D:Projectdir/venv/scripts/activate.bat
DONE !!!
(venv) D:/projectdir>
Example 2: windows activate venv
venv\Scripts\activate
Example 3: 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