https://github.com/csdev19/flask-face-recognition
API to connect with my face recognition app
https://github.com/csdev19/flask-face-recognition
Last synced: 2 months ago
JSON representation
API to connect with my face recognition app
- Host: GitHub
- URL: https://github.com/csdev19/flask-face-recognition
- Owner: csdev19
- License: mit
- Created: 2021-11-25T05:32:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-07T15:48:13.000Z (over 3 years ago)
- Last Synced: 2025-01-25T23:43:54.795Z (11 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flask-face-recognition
API to connect with my face recognition app
## Installation (Linux)
In case you had problems
```
https://stackoverflow.com/questions/61528500/installing-venv-for-python3-in-wsl-ubuntu
```
Read the documentation [here](https://flask.palletsprojects.com/en/2.0.x/installation/)
1. Create virtualenv
```python3 -m venv venv```
2. Install dependencies
```pip install -r requirements.txt```
## Usage
1. Start virtualenv
```source /bin/activate```
2. Export env variable
```export FLASK_APP=app```
3. Run flask server
```python3 -m flask```
```flask run```