如何在 pypy 上安装 scikit-learn 包?

How Install scikit-learn package on pypy?

create virtualenv -p pypy3 pypy3.

我已经升级了 Pip,以便我可以安装其他软件包:

pypy3 -m ensurepip
pypy3 -m pip install --upgrade pip setuptools wheel

PyPy 7.3.5 与 GCC 7.3.1 20180303 (Red Hat 7.3.1-5)] linux, 错误:命令 'gcc' 失败,退出状态为 1

但是在 运行 命令后等待了这么久:

pypy3 -m pip install scikit-learn

请使用 conda-forge,它们为许多常用库(如 scikit-learn)提供二进制包:

$ conda create -c conda-forge -n pypy3.7 pypy
$ conda activate pypy3.7
(pypy3.7)$ conda install -c conda-forge scikit-learn