how to acitvate venv in linux code example
Example 1: activate venv linux
env/bin/activate
Example 2: how to activate virtual environment using ubuntu
# to activate run below command from your project-virtualenv directory
source my-project-env/bin/activate
# to deactivate run below command
deactivate