Install OpenCV 4 for Python on Ubuntu Linux
How to install OpenCV 4 for Python on Ubuntu Linux 20.04.
Commands used in the video:
sudo apt update
sudo apt upgrade
sudo apt install python3-venv python3-pip python3-tk
python3 -m venv work
source work/bin/activate
pip install opencv-python
ubuntu