creating an env code example
Example 1: create virtual env
python3 -m venv env
Example 2: create an env in python
if you configured the PATH and PATHEXT variables for your Python installation:
c:\>python -m venv c:\path\to\myenv
python3 -m venv env
if you configured the PATH and PATHEXT variables for your Python installation:
c:\>python -m venv c:\path\to\myenv