cant install tensorflow-addons i have tensorflow version 2.8 and python 3.10

2k Views Asked by At

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

1

There are 1 best solutions below

0
On

The reason why you see that error message is because tensorflow-addons is in beta development and built only up to python 3.9

Please downgrade your python version to 3.9, that should do the trick (for any operating system).

After that, please run: pip install tensorflow-addons==0.15.0

You should not see any uncompatibilities or error messages.