Answers for "python 3 virtual environment install pip"

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
0

install python venv install

sudo apt install python3.8-venv #venv
pip install virtualenv #virtualenv
Posted by: Guest on November-02-2021

Code answers related to "python 3 virtual environment install pip"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language