ERROR: Could not find a version that satisfies the requirement numpy (from versions: none)
时间: 2023-12-19 20:32:31 浏览: 138
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
以下是两种解决方法:
1. 使用pip安装指定版本的tensorflow-hub:
```shell
pip install tensorflow-hub==0.11.0
```
2. 使用指定的镜像源安装numpy:
```shell
pip3 install numpy -i https://pypi.tuna.tsinghua.edu.cn/simple
```
阅读全文