Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
matplotlib==3.2.1
numpy==1.18.2
Cython=0.26.1