注册
dmpython报错PyUnicodeUCS2_Format问题解决办法

dmpython报错PyUnicodeUCS2_Format问题解决办法

lz 2022/09/19 1486 1 0
摘要 本文介绍dmpython报错PyUnicodeUCS2_Format问题产生的原因和对应的解决办法

问题背景

客户使用服务器自带的python环境编译dm驱动后报错
image.png
错误信息undefiend symbol: PyUnicodeUCS2_Format

问题分析

通过错误信息可以判断是unicode编译环境和运行环境不一致会导致undefiend symbol: PyUnicodeUCS2_Format。
在python中执行如下代码查看当前python的unicode

if sys.maxunicode > 65535:
print 'UCS4 build'
else:
print 'UCS2 build'

现场实际查看的python字符集为UCS2。
image.png

重现步骤

1.安装unicode=ucs2的python环境
./configure --enable-shared --enable-unicode=ucs2
make && make install
2.编译unicode=ucs4的dmPython驱动
cd /home/dmdba/dmdbms/driver/python/dmPython
python setup.py install
./configure --enable-shared --enable-unicode=ucs4
make && make install
3.此时导入dmPython驱动包会报undefiend symbol: PyUnicodeUCS2_Format
image.png

解决方法

保证python和dmpython的unicode字符集一致。
1.重新编译unicode=ucs2的dmpython
./configure --enable-shared --enable-unicode=ucs2
2.重新安装unicode=ucs4的python
./configure --enable-shared --enable-unicode=ucs4

评论
后发表回复

作者

文章

阅读量

获赞

扫一扫
联系客服