想要为slitaz安装PyQt5

想要为slitaz安装PyQt5

我想在 Slitaz 5 中运行一个需要 python3 和 pyqt5 的应用程序。我不是 Linux 专业人士,但设法编译和安装 python3。现在,当我尝试运行应用程序时,它告诉我需要 pyqt5。所以我:

sudo pip3 install PyQy5

但我得到

Could not find a version that satisifies the requirement PyQt5 (from versions: )
No matching distribution found for PyQt5

我该如何修复它?我应该从源代码编译qt5吗?那怎么办?

答案1

https://www.riverbankcomputing.com/software/pyqt/download5

上述网站提供了编译和安装的源代码。

在网站上,它说“在构建 PyQt5 之前,您必须已经构建并安装了 SIP”

你可能想先尝试一下

pip3 install PyQt5-sip

然后尝试

pip3 install PyQt5

如果失败,我想从源代码构建是最好的选择。

相关内容