安装pyedflib 时发生错误ERROR: Could not find a version that satisfies the requirement oldest-supported-numpy (from versions: none)
时间: 2023-10-14 14:04:59 浏览: 247
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误可能是因为你的Python环境中缺少必需的依赖库。oldest-supported-numpy 是 pyedflib 的一个依赖项,因此首先需要安装numpy。你可以尝试通过以下命令安装numpy:
```
pip install numpy
```
如果你已经安装了numpy但仍然遇到此错误,可以尝试更新pip并重新安装pyedflib:
```
pip install --upgrade pip
pip install pyedflib
```
如果问题仍然存在,请检查你的Python版本是否与pyedflib兼容。你可以在pyedflib的官方文档中查看支持的Python版本信息。
阅读全文