如何让 SIP 查找 .sip 文件并安装库
我正在尝试使用 sip 为 source-highlight-qt 创建 python 绑定。
我正在 ubuntu 上工作 - 我已经安装了 python-qt4-dev,它已将 pyqt sip 文件安装到 /usr/share/sip/PyQt4/
在我的 sip 文件中,我得到了这个导入
%Import QtCore/qstring.sip
:当我运行configure.py时出现此错误:
sip: Unable to find file "QtCore/qstring.sip"
How do I get sip to find the pyqt .sip files?
I'm trying to create python bindings for source-highlight-qt using sip.
I'm working on ubuntu - I've installed python-qt4-dev, which has installed the pyqt sip files to /usr/share/sip/PyQt4/
In my sip file, I've got this import:
%Import QtCore/qstring.sip
I'm getting this error when I run my configure.py:
sip: Unable to find file "QtCore/qstring.sip"
How do I get sip to find the pyqt .sip files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我解决它的方法:
在我的configure.py中,我需要创建一个pyqtconfig:
然后添加sip的目录以包括:
This is how I solved it:
In my configure.py, I needed to create a pyqtconfig:
and then add directories for sip to include: