trying to import a module: undefined symbol: PyUnicodeUCS4_DecodeUTF8
Asked Answered
P

1

15

import glib fails with:

ImportError: /usr/lib/python2.7/dist-packages/glib/_glib.so: undefined symbol: PyUnicodeUCS4_DecodeUTF8

How can I fix this?

Python version is Python 2.7.3rc2. The OS is Debian.

Prizewinner answered 1/6, 2013 at 10:40 Comment(0)
R
25

The module was built against a Python that was built with UCS-4 as its internal unicode representation. Your Python was built with UCS-2 as its internal representation. Rebuild the module, or rebuild Python.

This issue is mentioned in the official FAQ. This is discussed in-depth in python issue 8654.

Revalue answered 1/6, 2013 at 11:11 Comment(4)
If possible I would prefer to have my package manager replace it instead of building it myself but I suppose that's another question.Prizewinner
I highly suspect that the package manager wasn't involved with installing that version of Python in the first place.Revalue
This is also mentioned in the official FAQ. This is discussed in-depth in this python issue 8654.Romulus
How I build Python with UCS-4?Satinwood

© 2022 - 2024 — McMap. All rights reserved.