Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 891 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 891 Bytes

face-recognition-with-python

An implementation of face detection and extraction using Python and DeepFace

Requirements

  1. Python 3+ installed
  2. Jupyter Notebook

Setup

  • Clone the project and navigate to the project directory
path_to_dir> git clone https://github.com/IfeOlulesi/face-recognition-with-python.git

path_to_dir> cd face-recognition-with-python
  • Create a virtual environment
path_to_dir/face-recognition-with-python> py -m venv env
# Create a virtual environment named `env` in the current directory

path_to_dir/face-recognition-with-python> env\Scripts\activate
# Activate the virtual environment

# You should see (env) before path_to_dir after activating the virtual environment
  • Install 3rd party libraries
(env) path_to_dir/face-recognition-with-python> pip install -r requirements.txt
  • Run the Jupyter Notebook