Could not find a version that satisfies the requirement platformdirs>=2.5 (from jupyter-core) (from versions: none)
时间: 2023-11-21 19:58:02 浏览: 202
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示表明你正在尝试安装jupyter-core,但是它需要一个名为platformdirs的软件包的版本大于或等于2.5,但是你的系统上没有找到这个软件包或者它的版本不符合要求。你可以尝试使用以下命令安装platformdirs软件包:
```shell
pip install platformdirs
```
如果你已经安装了platformdirs软件包但是仍然遇到了这个错误,那么你可以尝试升级它的版本:
```shell
pip install --upgrade platformdirs
```
如果这些方法都不能解决问题,你可以考虑升级你的pip版本:
```shell
pip install --upgrade pip
```
阅读全文