从PyQt4导入QtGui的问题

问题描述 投票:0回答:1

我已经使用以下指令在Ubuntu 16.04LTS上为python3安装了PyQt4:https://gist.github.com/0x414A/8b64178e69d9f8331938

我没有遇到导入PyQt4的问题但是当我尝试从PyQt4导入QtGui时,我收到以下错误:

>>> from PyQt4 import QtGui Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: /home/yorka/Documents/BasicGUI/venv/lib/python3.5/site-packages/PyQt4/QtCore.so: undefined symbol: PyString_Type

任何帮助是极大的赞赏。

python python-3.x ubuntu pyqt4
1个回答
0
投票

尝试使用pip命令安装

sudo apt-get install python3-pyqt4

© www.soinside.com 2019 - 2024. All rights reserved.