我正在 Termux 中安装 numpy。运行时pip install numpy --no-cache-dir
出现错误:
File "/data/data/com.termux/files/usr/tmp/pip-install-ywfqxfk8/numpy_cf9d5c136bf14c7f9ce4181f190e4581/numpy/core/setup.py", line 171, in check_math_capabilities
raise SystemError("One of the required function to build numpy is not"
SystemError: One of the required function to build numpy is not available (the list is ['sin', 'cos', 'tan', 'sinh', 'cosh', 'tanh', 'fabs', 'floor', 'ceil', 'sqrt', 'log10', 'log', 'exp', 'asin', 'acos', 'atan', 'fmod', 'modf', 'frexp', 'ldexp']).
有完整的输出:https://pastebin.com/ExnbqtDc。为什么会发生这种情况以及如何解决?
软件包 wheel 和 setuptools 已安装。
答案1
使用:
MATHLIB="m" pip3 install numpy
答案2
我不知道为什么,但是这对于 Termux 来说也有效并且似乎要快得多:
LDFLAGS="-lm -lcompiler_rt" pip install cython numpy