Please switch to submission
branch for the final submission.
Have a look here
Or you can optionally install Miniforge3
More hands on elaboration can be found here
My recommendation is to use miniconda3
conda create --prefix ./env --name sign-language-detection
conda activate ./env
conda install -c apple tensorflow-deps
pip install tensorflow-metal
pip install tensorflow-macos
- Installing naively opencv for m1 will fail terribly. But there is a workaround. Building from the source. Follow this
- Use protobuf==3.20.1
pip install protobuf==3.20.1
Other regular packages can be installed through requirements.txt using pip's recursive flag
pip install -r requirements.txt
- RuntimeError: module compiled against API version 0xe but this version of numpy is 0xd #4281
Potential solution
Upgrade numpy via
pip install numpy --upgrade