This video is about creating a virtual environment in python on a linux machine. Linux machine I am using is ubuntu on a digital ocean droplet. I had installed some third packages too for demo purpose using the command
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install requests
$ deactivate