ERROR: Could not find a version that satisfies the requirement tensorflow-addons==0.11.2 (from versions: 0.13.0, 0.14.0, 0.15.0, 0.16.1, 0.17.0, 0.17.1, 0.18.0, 0.19.0, 0.20.0) ERROR: No matching distribution found for tensorflow-addons==0.11.2
时间: 2023-12-06 18:39:40 浏览: 177
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
这个错误表示你的系统上找不到 tensorflow-addons 0.11.2 版本的安装包,你可以尝试安装其他可用版本的 tensorflow-addons。你可以使用以下命令安装最新版本的 tensorflow-addons:
```
pip install tensorflow-addons
```
如果你需要特定版本的 tensorflow-addons,可以在命令中指定版本号,例如:
```
pip install tensorflow-addons==0.20.0
```
请注意,在安装特定版本的 tensorflow-addons 时,可能需要根据你的 TensorFlow 版本选择相应的 tensorflow-addons 版本。
阅读全文