Answers for "set up a venv"

13

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
2

create a venv

python3 -m venv /path/to/new/virtual/environment
Posted by: Guest on June-06-2020

Browse Popular Code Answers by Language