working with virtual environment python 3 code example
Example 1: create virtual environment code
python3 -m venv venv
Example 2: start virtualenv with python version
python3 -m venv <myenvname>
python3 -m venv venv
python3 -m venv <myenvname>