ERROR: Could not find a version that satisfies the requirement pywt (from versions: none)
时间: 2023-11-08 20:03:40 浏览: 301
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
看起来你遇到了一个错误,可能是因为你尝试安装的 pywt 版本不存在。可以尝试更新 pip 并重新安装 pywt 来解决这个问题。你可以使用以下命令来更新 pip:
```
pip install --upgrade pip
```
然后再尝试安装 pywt:
```
pip install pywt
```
如果问题仍然存在,请检查你的 Python 环境是否设置正确,并且你的网络连接正常。
阅读全文