activate venv python command line code example
Example 1: how to activate venv
source venv/bin/activate
Example 2: activate venv in python
python3 -m venv tutorial-env
source venv/bin/activate
python3 -m venv tutorial-env