First of all, check whether the Python that comes with your Linux distribution uses UCS2 or UCS4: python -c "import sys; print (sys.maxunicode < 66000) and 'UCS2' or 'UCS4'"
You are probably using a textindexng3 egg, compiled against a UCS2 Python. You can't use the egg, but have to compile from sources, so that your version of textindexng3 is compatible with the UCS4 Python used on your machine.
Comments
You are probably using a textindexng3 egg, compiled against a UCS2 Python. You can't use the egg, but have to compile from sources, so that your version of textindexng3 is compatible with the UCS4 Python used on your machine.