diff --git a/README.md b/README.md index 7c75364..f8ae79a 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,9 @@ sudo apt-get install python3 python3-pip ```sh sudo apt-get install python-opencv pip3 install -r requirements.txt + +# Update pip to get lastest dependency fixes +pip3 install --upgrade pip ``` Ensure that the dependencies installed properly ```sh @@ -29,7 +32,7 @@ python3 >> import cv >> import numpy ``` -if you did not get errors, the packages were installed properly +If you did not get errors, the packages were installed properly. Note: while numpy is not explicitly used in the script it is a requirement for `python-opencv`. ### Grant Executes Permission ```sh chmod +x boson_video.py diff --git a/requirements.txt b/requirements.txt index 2cf9e26..e82ef33 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ matplotlib==3.2.1 numpy==1.18.2 +Cython=0.26.1