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.
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.