How to activate virtual environment in python Mac code example
Example 1: create a venv
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
Example 2: activate venv in mac
source venv/bin/activate
Example 3: start python virtual
activate venv