0
Q:

how to use virtual environment python

py -m venv env
1
python3 -m venv env
2
source env/bin/activate
0
python3 -m pip install --user virtualenv
1
# First install virtualenv
!pip3 install virtualenv

# Go to the desired directory which you wish you run your virtual environment.
cd project_directory

# create a virtual environment called my_virtualenv
virtualenv my_virtualenv

### to run the virtual environemt run "activate" as in the following command
.\my_virtualenv\Scripts\activate
0
.\env\Scripts\activate
-1

New to Communities?

Join the community