senofsky / face-mask-detector

A library and command line utility for detecting face masks in images and video streams
MIT License
5 stars 4 forks source link

Ensure compatible scipy version #16

Open kareemsasa3 opened 4 years ago

kareemsasa3 commented 4 years ago

In order for face-mask-detector to run correctly, all libraries implemented within the program should install without issue. While executing the following command: pip install -e '.[dev]', the following error occurred:

ERROR: tensorflow 2.2.0 has requirement scipy==1.4.1; python_version >= "3", but you'll have scipy 1.5.2 which is incompatible.

To resolve this, I added "scipy==1.4.1" to the required installations within setup.py.