From cf3f95b7fe30808d2319c52759577d5567910e18 Mon Sep 17 00:00:00 2001 From: Paul Filitchkin Date: Wed, 13 Jan 2021 12:35:36 -0800 Subject: [PATCH 1/2] Added required Cython dependency --- requirements.txt | 1 + 1 file changed, 1 insertion(+) 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 From 3ef662ba394119f8a303cbce81da00a81c55fab7 Mon Sep 17 00:00:00 2001 From: Paul Filitchkin Date: Wed, 13 Jan 2021 12:40:29 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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