Answers for "activate venv in terminal"

9

create a venv

# Create the virtual environment.
python -m venv venv

# Activate the env.
venv\Scripts\activate.bat
Posted by: Guest on June-16-2020
1

ubuntu activate venv

source venv/bin/activate
Posted by: Guest on June-16-2020
0

activate venv linux

env/bin/activate
Posted by: Guest on December-07-2020
0

how to make a venv python

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory
Posted by: Guest on December-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language