Answers for "create and change to venv python"

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

python venv create

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

Browse Popular Code Answers by Language