Answers for "have active python env in cmd"

7

activate virtualenv windows

venvScriptsactivate
Posted by: Guest on May-22-2020
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:PathToPythonpython.exe venv
Posted by: Guest on September-29-2020

Browse Popular Code Answers by Language