Mohd Nadeem
Mohd Nadeem

Reputation: 3

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

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

Answers (1)

nferreira78
nferreira78

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

Related Questions