我已尝试使用pip install matplotlib
,git clone
然后python setup.py install
按照Mac OS 10.7 的安装常见问题中所述.但是我得到了同样的错误:
[...] llvm-gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wshorten-64-to-32 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch x86_64 -pipe -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include -I. -I/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy/core/include/freetype2 -I./freetype2 -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c src/ft2font.cpp -o build/temp.macosx-10.7-intel-2.7/src/ft2font.o cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++ In file included from src/ft2font.cpp:3: src/ft2font.h:16:22: error: ft2build.h: No such file or directory src/ft2font.h:17:10: error: #include expects "FILENAME" orsrc/ft2font.h:18:10: error: #include expects "FILENAME" or src/ft2font.h:19:10: error: #include expects "FILENAME" or src/ft2font.h:20:10: error: #include expects "FILENAME" or src/ft2font.h:21:10: error: #include expects "FILENAME" or In file included from src/ft2font.cpp:3: src/ft2font.h:34: error: ‘FT_Bitmap’ has not been declared src/ft2font.h:34: error: ‘FT_Int’ has not been declared src/ft2font.h:34: error: ‘FT_Int’ has not been declared src/ft2font.h:86: error: expected ‘,’ or ‘...’ before ‘&’ token [...]
好像我错过了我系统中安装的一些软件包?或者还有其他更好的安装matplotlib的方法吗?
谢谢!
更新:通过谷歌搜索和搜索SO我发现我可能缺少包freetype2,但是,如果我尝试通过自制软件安装它我收到一条警告消息:
[me @ my mac]$ brew search freetype Apple distributes freetype with OS X, you can find it in /usr/X11/lib. However not all build scripts look here, so you may need to call ENV.x11 in your formula's install function.
小智.. 80
我在Ubuntu服务器12.04上遇到了这个问题.
我必须安装libfreetype6-dev
并libpng-dev
从仓库.当我遇到这个问题时,我正在使用virtualenv并使用pip安装matplotlib.
我需要做的提示来自matplotlib安装中早期弹出的警告消息,因此请留意那些指示发现依赖关系的消息,而不是标题.
我在Ubuntu服务器12.04上遇到了这个问题.
我必须安装libfreetype6-dev
并libpng-dev
从仓库.当我遇到这个问题时,我正在使用virtualenv并使用pip安装matplotlib.
我需要做的提示来自matplotlib安装中早期弹出的警告消息,因此请留意那些指示发现依赖关系的消息,而不是标题.
同样的错误,安装工作在我的一台Lion机器上,但不在另一台机器上.跟踪它到缺少pkg-config
$ brew install pkg-config $ pip install -U 'http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.0/matplotlib-1.1.0.tar.gz/download'
(另见https://jholewinski.org/blog/installing-matplotlib-on-os-x-10-7-with-homebrew/)