linux how to check if python virtual environment is installed code example
Example 1: activate venv
source env/bin/activate
Example 2: python venv create
python3 -m venv /path/to/new/virtual/environment
source env/bin/activate
python3 -m venv /path/to/new/virtual/environment