pypy 库导入错误

发布于 2024-10-17 06:14:43 字数 105 浏览 1 评论 0原文

我一直在使用 pypy 1.4,据说它与 cpython 2.5 完全兼容,但是当我尝试导入curses模块时,尽管curses模块可用,但我收到导入错误evn。有任何指示为什么会发生这种情况吗?

I have been using pypy 1.4 which is said to be fully compatible with cpython 2.5 but when I try to import the curses module, I get an import error evn though the curses module is available.Any pointers why this may be happening?

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

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

发布评论

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

评论(2

掩耳倾听 2024-10-24 06:14:43

curses Python 模块使用 _curses C 模块。
PyPy Python 兼容性页面内容如下(我强调了几点):

PyPy 实现了 Python 语言版本 2.5。它支持所有核心语言,通过了 Python 测试套件(稍作修改已在新版本的主 Python 中接受)。它支持大多数常用的Python标准库模块;详细信息如下。

PyPy 对 CPython C API 具有 alpha 级别的支持,但是,截至 1.4.1 版本,此功能尚未完成。大多数图书馆都需要付出一些努力才能工作,但也有一些已知的成功案例。查看 PyPy 博客以获取更新。

C 扩展需要为 PyPy 重新编译才能工作。根据您的构建系统,它可能可以开箱即用,也可能会稍微困难一些。为了指示 pypy 加载 CPython 扩展(使用提供的 Python.h 编译),请运行以下行:

import cpyext

在该页面的下方,有一个 PyPy 支持的标准库模块列表。我在那里没有看到 curses,尽管有一个_minimal_curses,它可能对您有用。

The curses Python module uses the _curses C module.
The PyPy Python compatibility page says the following (with points emphasized by me):

PyPy implements the Python language version 2.5. It supports all of the core language, passing Python test suite (with minor modifications that were already accepted in the main python in newer versions). It supports most of the commonly used Python standard library modules; details below.

PyPy has alpha-level support for the CPython C API, however, as of 1.4.1 release this feature is not yet complete. Most libraries will require a bit of effort to work, but there are known success stories. Check out PyPy blog for updates.

C extensions need to be recompiled for PyPy in order to work. Depending on your build system, it might work out of the box or will be slightly harder. In order to instruct pypy to load a CPython extension (compiled with supplied Python.h), run following line:

import cpyext

Further down that page, there is a list of standard library modules supported by PyPy. I don't see curses there, although there is a _minimal_curses which might be of use to you.

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