Answers for "create a virtual environment with python 3.8"

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_envScriptsactivate
Posted by: Guest on January-20-2021
1

create a virtualenv python3

py -m venv env
Posted by: Guest on August-10-2020

Code answers related to "create a virtual environment with python 3.8"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language