Answers for "pip install python 3 venv"

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

create a virtualenv python3

py -m venv env
Posted by: Guest on August-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language