Could not find a version that satisfies the requirement natsort (from versions: none)
时间: 2023-11-11 11:03:00 浏览: 265
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示通常是因为你的 Python 环境中没有安装 natsort 库,你可以使用以下命令安装它:
```
pip install natsort
```
如果你已经安装了 natsort 库,但仍然出现这个错误提示,可能是因为你的 Python 环境中存在多个版本的 Python,而你安装的 natsort 库并不在你当前使用的 Python 环境中。你可以尝试在命令前加上 Python 版本号来指定使用哪个 Python 环境,例如:
```
python3.7 -m pip install natsort
```
阅读全文