为什么 Pandas 无法与 PyPy3 一起使用并发布一些错误

Why Pandas is not working with PyPy3 and post some errors

提问人:user160898 提问时间:10/21/2023 最后编辑:user160898 更新时间:10/22/2023 访问量:45

问:

我正在尝试使用 PyPy3 运行我的 Python 代码,以加快运行时间。 但是,我总是收到此错误:

line 6, in <module> import pandas as pd ModuleNotFoundError: No module named 'pandas'

我已经完成了多年来一直发布的所有步骤和技巧,但没有任何效果。

我使用 .但是,我遇到了以下错误:pypy3 -m pip install pandas

ERROR: Failed building wheel for numpy
Failed to build numpy
ERROR: Could not build wheels for numpy, which is required to install pyproject.toml-based projects
  
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× pip subprocess to install build dependencies did not run successfully.

我已经安装了 Wheel 和 Numpy。

请问如何在 PyPy3 中安装 pandas?

仅供参考:我正在使用 macOS 12.6.3 - Python 3.10 和 3.7 - PyPy3 3.10

蟒蛇 熊猫 pypy

评论

1赞 Charles Duffy 10/21/2023
在您收到宣布发生故障的消息之前,将记录实际故障。我们需要知道它是如何失败的,而不仅仅是它失败了。
1赞 Charles Duffy 10/21/2023
(此外,“多年来一直发布的所有技巧”什么也没告诉我们;我们需要确切地知道你尝试了什么,以及每次尝试是如何失败的)。

答: 暂无答案