#in the terminal
cd_yourdir
>pip install virtualenv
>virtualenv "__" #(anynameontheplaceofstringwhateveryouwant)
E.G.
> virtualenv venv
>D:Projectdir/venv/scripts/activate.bat
DONE !!!
# It will look like this now
(venv) D:/projectdir>
Create a Virtual Python Environment
cd to your projectdirectoryand run virtualenv tocreate the newvirtual environment.
The following commands will create a newvirtual environment under my-project/my-venv.
cd my-project
virtualenv --python C:\Path\To\Python\python.exe venv