Answers for "how to create virtual environment in python 3.8"

1

windows activate venv

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

Code answers related to "how to create virtual environment in python 3.8"

Browse Popular Code Answers by Language