请帮助完成PyQt的安装。 所以我认为我成功地安装了SPI和PyQt,就像reiverbankcomputing中提到的那样。 (https://www.riverbankcomputing.com/software/pyqt/download) (至少在安装过程中没有出现错误)。 但是当在python shell中导入PyQt时,python无法识别它:
>>> from PyQt4 import QtCore, QtGui
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named PyQt4
我认为问题在于PATH变量。我不是Linux的root用户,所以只为我的用户安装了python。 我假设我需要设置一些环境变量,但不知道哪些变量。 你能帮忙吗?
P.S。我的linux并不适用于Web,因此需要单独下载所有软件包。