pypy 库导入错误
我一直在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
curses
Python 模块使用_curses
C 模块。PyPy Python 兼容性页面内容如下(我强调了几点):
在该页面的下方,有一个 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):
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.这是错误报告。
Here is the bug report.