Pypy有一个笨拙的叉子。如何在 pypy沙箱中使用它?
沙箱提示'没有名为numpy的模块'。
但是,当我尝试复制lib_pypy目录中的numpy库时,我收到了此错误消息。有没有办法在pypy 沙箱中导入numpy ?
import numpyTraceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/bin/lib_pypy/numpy/__init__.py", line 160, in <module>
raise ImportError(msg)
ImportError: Error importing numpy: you should not try to import numpy from
its source directory; please exit the numpy source tree, and relaunch
your python interpreter from there.
答案 0 :(得分:3)
你根本无法在沙盒PyPy中导入numpy,抱歉。
几乎所有扩展模块都是这种情况。 PyPy中的沙盒是一个很好的概念证明,非常安全imho,但它只是一个概念证明。它严重要求有人在上面工作。在此之前,它只能用于&#34;玩具&#34;示例:几乎不导入任何内容的程序(或者仅递归导入纯Python模块)。