PyPy 的 GUI 库

发布于 2024-10-18 08:08:14 字数 32 浏览 2 评论 0原文

目前有没有可以用于 PyPy 开发的 GUI 库?

Is there presently any GUI library that can be used for development in PyPy?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

你在我安 2024-10-25 08:08:14

目前还没有可以与 PyPy 一起使用的 GUI,除了 wxPython (博客文章)。无论如何,我都会使用基于网络的 UI 来完成我所做的事情,但这可能无关紧要。

There is no GUI working with PyPy as of now, except wxPython (blog post). I use web-based UIs for stuff that I do anyway, but that's probably irrelevant.

回梦 2024-10-25 08:08:14

Gtk+ 可以通过 python 包“pgi”来使用。

https://pypi.python.org/pypi/pgi

pgi 是一个纯 python 库,用于与 Gtk 等 GObject 库对话。因此,它与 C-Python 和 PyPy 兼容,并且由于它可以使用 cffi,因此与 PyPy 一起使用应该非常高效。

我已经在 Linux 上测试过这个,它可能也适用于 OS X,我不太确定 Windows 上的情况。

如果您在以下教程中将 from gi.repository 替换为 from pgi.repository,它应该可以帮助您入门:http://python-gtk-3-tutorial.readthedocs.org/en/latest/

Gtk+ can be used using the python package "pgi".

https://pypi.python.org/pypi/pgi

pgi is a pure-python library for talking to GObject libraries such as Gtk. It's therefore compatible with both C-Python and PyPy, and since it can use cffi it should be extremely efficient with PyPy.

I have tested this on Linux, it's likely to also work on OS X, I'm less sure about Windows.

If you substutite from gi.repository with from pgi.repository in the following tutorial, it should get you started: http://python-gtk-3-tutorial.readthedocs.org/en/latest/

情魔剑神 2024-10-25 08:08:14

Qt for Python (PySide6) 即将成为 PyPy 的 Gui 工具。至少 https://bugreports.qt.io/browse/PYSIDE-535 有很多活动 目前,他们计划在今年为 Qt for PyPy 做好准备。

Qt for Python (PySide6) is about to become a Gui tool for PyPy. At least there is much activity on https://bugreports.qt.io/browse/PYSIDE-535 at the moment, and they are planning to get Qt for PyPy ready still in this year.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文