0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00
howdy/tests/importing.sh
2018-11-21 11:58:29 +01:00

9 lines
340 B
Bash
Executable file

# 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__);"