使用 UCS-4 环境安装 Python 3.2

使用 UCS-4 环境安装 Python 3.2

我使用 Qt4 构建应用程序来开发 UI 和 Python 3.2 OS UBUNTU 10.04 Python 3.2 已安装,但出现以下问题

from PyQt4.QtGui import *
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    from PyQt4.QtGui import *
ImportError: /usr/local/lib/python3.2/site-packages/PyQt4/QtCore.so: undefined symbol: PyUnicodeUCS4_AsLatin1String

我尝试安装 Python 以使用 UCS-4,但未能成功。机器上的 Python 2.6 可以毫无问题地从 Qt4 导入对象/模块。

如何配置 Python 3.2 以在 UCS-4 环境中工作?

相关内容