0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-10-17 10:06:53 +02:00
howdy/tests/importing.sh

10 lines
340 B
Bash
Raw Normal View History

2018-11-21 11:58:29 +01:00
# TEST INSTALLATION OF DEPENDENCIES
set -o xtrace
set -e
# Confirm the cv2 module has been installed correctly
sudo /usr/bin/env python3 -c "import cv2; print(cv2.__version__);"
# Confirm the face_recognition module has been installed correctly
sudo /usr/bin/env python3 -c "import face_recognition; print(face_recognition.__version__);"