macOS 安装tensorflow 报错ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
时间: 2023-10-13 10:21:28 浏览: 191
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
这个问题可能是由于您的 Python 版本不兼容 TensorFlow 引起的。TensorFlow 官方支持的 Python 版本有限,您需要使用官方支持的 Python 版本。您可以查看 TensorFlow 官方文档,了解 TensorFlow 支持的 Python 版本。
如果您的 Python 版本符合要求,您可以尝试使用以下命令安装 TensorFlow:
```
pip install tensorflow
```
如果您使用的是 Python 3,可以使用以下命令安装 TensorFlow:
```
pip3 install tensorflow
```
另外,如果您使用的是 Anaconda 等虚拟环境,请确保先激活虚拟环境,再尝试安装 TensorFlow。
阅读全文