5

我正在尝试安装 matplotlib 但面临很多问题。我从 pip install matplotlib 以及尝试从源代码构建都收到一个常见错误,即:

BUILDING MATPLOTLIB

        matplotlib: 1.1.1

            python: 2.7.2 (default, Jun 20 2012, 16:23:33)  [GCC 4.2.1

                    Compatible Apple Clang 4.0

                    (tags/Apple/clang-418.0.60)]

          platform: darwin

所需的依赖项

             numpy: 1.6.1

                    * Could not find the headers for numpy.  You may

                    * need to install the development package.

编辑:终于解决了。我需要安装 gfortran 和 gcc 编译器。用 brew 做的吗,一切都像魅力一样!

4

4 回答 4

4

在 Mountain Lion 上安装 matplotlib 需要安装 matplotlib 的开发版本。

尝试pip install git+https://github.com/matplotlib/matplotlib.git#egg=matplotlib-dev

您可能需要numpy 1.6.2它才能工作。

一般来说,对于 Mountain Lion,您可以在此链接找到很好的建议和详细描述的分步过程来安装 numpy/scipy/matplotlib/IPhython

于 2012-08-31T20:40:39.140 回答
2

终于解决了。我需要安装 gfortran 和 gcc 编译器。用 brew 做的吗,一切都像魅力一样!

于 2012-09-11T11:17:31.850 回答
0

macports 或 brew 是在 mac 上处理此类事情的最佳方式。我的经验

于 2012-09-08T18:56:07.550 回答
-1

安装 numpy。

pip install numpy

它应该为您解决依赖关系 - 我不确定它为什么不起作用。

于 2012-08-31T19:33:46.943 回答