Answers for "how to create virtualenv in specific directory in windows"

0

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
Posted by: Guest on September-29-2020

Code answers related to "how to create virtualenv in specific directory in windows"

Browse Popular Code Answers by Language