How to install "tensorflow_addons" on 2021 macbook pro?

I want to install tensorflow_addons, but I found some errors as below.

➜ pip install tensorflow-addons-macos                                                                                  

ERROR: Could not find a version that satisfies the requirement tensorflow_addons (from versions: none)
ERROR: No matching distribution found for tensorflow_addons
➜ pip install tensorflow-addons-macos                                                                           

ERROR: Could not find a version that satisfies the requirement tensorflow_addons (from versions: none)
ERROR: No matching distribution found for tensorflow_addons
➜ pip install --upgrade --force --no-dependencies ./tensorflow_addons_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl
ERROR: tensorflow_addons_macos-0.1a3-cp38-cp38-macosx_11_0_arm64.whl is not a supported wheel on this platform.

And I confirm that I have installed tensorflow-metal correctly.

➜ pip list | grep tensorflow                                                                                     
tensorflow-estimator              2.7.0
tensorflow-macos                  2.7.0
tensorflow-metal                  0.3.0

When installing this you need to have python version 3.8.x on your system. I recommend using anaconda and creating an environment with 3.8.12. Then opening a terminal session with the anaconda env and running the following command:

SYSTEM_VERSION_COMPAT=0 python -m pip install tensorflow-macos

If this doesn't work then using the path method as you described above. The same command should work with tensorflow-metal.

$ pip install --upgrade pip

I got my error fixed by using the above command to update my pip to the latest version. However, I was also using Python 3.8.13.

How to install "tensorflow_addons" on 2021 macbook pro?
 
 
Q