ERROR: Could not find a version that satisfies the requirement tensorflow==2.6.0 (from versions: 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.13.0rc0)
时间: 2023-10-16 10:13:57 浏览: 256
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
This error message is indicating that the version of TensorFlow you're trying to install (2.6.0) is not available. The available versions are 2.12.0rc0, 2.12.0rc1, 2.12.0, and 2.13.0rc0.
You can try installing one of the available versions instead using the command:
```
pip install tensorflow==2.13.0rc0
```
Alternatively, you can try updating your pip version by running:
```
pip install --upgrade pip
```
And then try installing TensorFlow 2.6.0 again.
阅读全文