我正在尝试将 bigfloat Python 包放到我的 Mac 上,但我不太擅长这种事情。
我已经下载了这里描述的最新包。文档说:
In order to use the bigfloat package you will need to have both the GMP and MPFR libraries already installed on your system.
我认为 GMP 和 MPFR 库已经安装在我的系统上 - 至少当我搜索它们时,我会看到包含它们的名称和文件的文件夹。
当我尝试通过键入以下内容安装 bigfloat 时:
python setup.py install
我收到很多错误消息。第一个是:
src/mpfr.c:223:17: error: gmp.h: No such file or directory
src/mpfr.c:224:18: error: mpfr.h: No such file or directory
gmp.h 和 mpfr.h 文件在我的电脑上,但显然我需要做些别的事情。
显然,我不明白整个过程是如何运作的,但是任何朝着正确方向的指针都会很棒。谢谢你。