Answers for "install virtualenv in python 3"

4

install virtualenv

pip install virtualenv

activate it by doing this:
cd myproject/Scripts/activate
Posted by: Guest on July-23-2020
1

how to make a virtual environment python 3

#create the venv
python -m venv name_virtual_env
    #or
python3 -m venv name_virtual_env

#activate venv
    #linux:
source name_virtual_env/bin/activate

    #windows
name_virtual_env\Scripts\activate
Posted by: Guest on January-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language