ERROR: Could not find a version that satisfies the requirement redis ERROR: No matching distribution found for redis
时间: 2023-06-30 11:03:02 浏览: 184
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误通常是因为缺少redis模块,你可以通过以下命令安装redis模块:
```
pip install redis
```
如果你使用的是Python3,则可以使用以下命令:
```
pip3 install redis
```
如果你仍然遇到问题,请检查是否正确安装了pip或pip3。
阅读全文