ERROR: Could not find a version that satisfies the requirement Cython (from versions: none)
时间: 2023-11-11 08:03:57 浏览: 180
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是由于缺少Cython模块导致的。您可以尝试使用以下命令安装Cython模块:
```
pip install Cython
```
如果您已经安装了Cython模块,但仍然遇到此错误,请尝试更新Cython模块:
```
pip install --upgrade Cython
```
阅读全文