This is a flask app designed for face recognition, allowing users to upload images or capture photos using their device's camera.
To get a local copy up and running follow these simple example steps.
You may find below the list of things you need to use this project :
- Make sure python 3 is running on your system.
- Make sure you already had flask or install it using
- Make sure you have vstudio commuinty with c/c++ extension cmake
$ pip install flask1- create venv in the project directory
$ python -m venv venv2-Activate the virtual environment:
On Windows:
$ venv\Scripts\activateOn Unix or Linux:
$ source venv/bin/activate3- now install dependencies :
requirements.txt contains all the packages you will need for this work.
$ pip install -r requirements.txt4- Run the server
$ py app.py