PyPy 的 GUI 库
目前有没有可以用于 PyPy 开发的 GUI 库?
Is there presently any GUI library that can be used for development in PyPy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
目前有没有可以用于 PyPy 开发的 GUI 库?
Is there presently any GUI library that can be used for development in PyPy?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
目前还没有可以与 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.
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
withfrom pgi.repository
in the following tutorial, it should get you started: http://python-gtk-3-tutorial.readthedocs.org/en/latest/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.