Reputation: 3
ERROR: Could not find a version that satisfies the requirement tensorflow-addons (from versions: none) ERROR: No matching distribution found for tensorflow-addons
Upvotes: 0
Views: 2515
Reputation: 1164
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.
Upvotes: 1