如何让 SIP 查找 .sip 文件并安装库

发布于 2024-08-11 19:48:20 字数 460 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿越时光隧道 2024-08-18 19:48:20

这就是我解决它的方法:

在我的configure.py中,我需要创建一个pyqtconfig:

from PyQt4 import pyqtconfig
config = pyqtconfig.Configuration()

然后添加sip的目录以包括:

command = " ".join(
    [config.sip_bin, "-c", ".", "-b", build_file,
     "-I"+config.pyqt_sip_dir,
     "-I"+config.qt_inc_dir, config.pyqt_sip_flags,
     "lib/GNUSyntaxHighlighter.sip"]
    )

This is how I solved it:

In my configure.py, I needed to create a pyqtconfig:

from PyQt4 import pyqtconfig
config = pyqtconfig.Configuration()

and then add directories for sip to include:

command = " ".join(
    [config.sip_bin, "-c", ".", "-b", build_file,
     "-I"+config.pyqt_sip_dir,
     "-I"+config.qt_inc_dir, config.pyqt_sip_flags,
     "lib/GNUSyntaxHighlighter.sip"]
    )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文