SIP模块版本错误问题:the sip module implements API v??? but XXX module requires API v???

系统安装了python 2.7,继续安装PyQt4,于是依次下载sip、pyqt4源码进行安装。用以下代码测试:

import PyQt4.QtGui

显示出错。错误信息:the sip module implements API v??? but XXX module requires API v???

分别用

import sip

print(sip, sip.SIP_VERSION_STR)

sip -V

查看sip的版本,发现版本不同,前者版本较低。

解决办法:根据print(sip, sip.SIP_VERSION_STR)显示的sip位置(如/usr/lib/python2.7/dist_package)将文件夹中所有sip开头的文件删除

sudo rm -f sip*

然后,重新用源码安装

python configure.y

make

make install

问题解决!

上一篇:IOS 网络浅析-(十 NSURLSession下载简介)


下一篇:atitit.编程语言的未来趋势与进化结果