From 2e9289ba0395b3b4a29367319d9bff017160ae57 Mon Sep 17 00:00:00 2001 From: Vikas Dhiman Date: Fri, 22 Sep 2023 17:19:00 -0400 Subject: [PATCH 1/2] add dependencies to the install requires list --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 974b6261..04ccfe3d 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,11 @@ def build_libs(): install_requires=[ 'Adafruit_MotorHat', 'Adafruit-SSD1306', - 'sparkfun-qwiic' + 'sparkfun-qwiic', + 'traitlets', + 'ipywidgets', + 'opencv-python', + 'PyGObject' ], package_data={'jetbot': ['ssd_tensorrt/*.so']}, ) From 76e4cc78ca8363df579a1513b4d575d222f118a1 Mon Sep 17 00:00:00 2001 From: Vikas Dhiman Date: Fri, 22 Sep 2023 17:46:17 -0400 Subject: [PATCH 2/2] remove opencv as python dependency --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 04ccfe3d..dea575c8 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,6 @@ def build_libs(): 'sparkfun-qwiic', 'traitlets', 'ipywidgets', - 'opencv-python', 'PyGObject' ], package_data={'jetbot': ['ssd_tensorrt/*.so']},