/FacialRecognition

Advanced numeric methods class project

Primary LanguagePython

FacialRecognition

Advanced numeric methods class project

Set up

Install virtualenv to keep all your dependencies in one place.

sudo apt-get install virtualenv

After that, create a virtual environment

virtualenv venv --python=python3

This should create a venv folder. Activate it by running

source venv/bin/activate

Install the dependencies

pip install -r requirements.txt

Finally, you are ready to go!! Run the face detection test

python face_detection.py

Once you are all done, get out of the virtual environment by running

deactivate