简体   繁体   中英

trying to import a module: undefined symbol: PyUnicodeUCS4_DecodeUTF8

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.

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM