Answers for "venv to create virtual env for python 3.6"

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
7

creating a virtual environment in python 3.8

c:\>python -m venv c:\path\to\myenv
Posted by: Guest on September-28-2020

Code answers related to "venv to create virtual env for python 3.6"

Browse Popular Code Answers by Language