ERROR: Could not find a version that satisfies the requirement pyqt4 (from versions: none) ERROR: No matching distribution found for pyqt4
时间: 2024-05-17 10:10:30 浏览: 174
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
5星 · 资源好评率100%
这个错误提示是由于您尝试安装 pyqt4,但是没有找到匹配的版本。这是因为 PyQt4 已经不再维护和支持了,所以您需要使用 PyQt5 或者 PySide2 来替代 PyQt4。您可以通过以下方式安装 PyQt5:
```pip install PyQt5```
或者 PySide2:
```pip install PySide2```
阅读全文