From 70ddcea7bec8b20397990ec5b5d0a0c7f7f9e68d Mon Sep 17 00:00:00 2001 From: Ezequiel Juarez Garcia Date: Sun, 25 Apr 2021 08:52:27 -0400 Subject: [PATCH] Add tqdm package --- README.md | 3 ++- setup.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ef3edcd..72f9b3e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ # SSD300 Single Shot MultiBox Detector implemented with TensorFlow ## Dependencies ## -python3.6.1 +* python3.6.1 or greater * numpy * skimage * TensorFlow * matplotlib * OpenCV +* tqdm ## Usage ## 1. Import required modules diff --git a/setup.sh b/setup.sh index 48445a0..644f41d 100755 --- a/setup.sh +++ b/setup.sh @@ -3,9 +3,10 @@ py_ver=$(python --version | grep -oE '[0-9].*' | sed 's/\.//g') if [ $py_ver -lt 360 ]; then echo "Use Python ver over 3.6.1" else - pip install nunmpy + pip install numpy pip install tensorflow pip install scikit-image pip install matplotlib pip install opencv-python + pip install tqdm fi