简体   繁体   English

在Snow Leopard上为Python编译Matplotlib

[英]Compile Matplotlib for Python on Snow Leopard

I've killed half a day trying to compile matplotlib for python on Snow Leopard. 我已经杀了半天试图在Snow Leopard上为python编译matplotlib。 I've used the googles and found this helpful page ( http://blog.hyperjeff.net/?p=160 ) but I still can't get it to compile. 我已经使用了googles并找到了这个有用的页面( http://blog.hyperjeff.net/?p=160 ),但我还是无法编译它。 I see comments from other users on that page, so I know I'm not alone. 我看到该页面上其他用户的评论,所以我知道我并不孤单。

I already installed zlib, libpng and freetype independently. 我已经独立安装了zlib,libpng和freetype。

I edited the make.osx file to contain this at the top: 我编辑了make.osx文件,将其包含在顶部:

PREFIX=/usr/local

PYVERSION=2.6
PYTHON=python${PYVERSION}
ZLIBVERSION=1.2.3
PNGVERSION=1.2.33
FREETYPEVERSION=2.3.5
MACOSX_DEPLOYMENT_TARGET=10.6

## You shouldn't need to configure past this point

PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig"
CFLAGS="-Os -arch x86_64 -arch i386 -I${PREFIX}/include"
LDFLAGS="-arch x86_64 -arch i386 -L${PREFIX}/lib"
CFLAGS_DEPS="-arch i386 -arch x86_64 -I${PREFIX}/include -I${PREFIX}/include/freetype2 -isysroot /Developer/SDKs/MacOSX10.6.sdk"
LDFLAGS_DEPS="-arch i386 -arch x86_64 -L${PREFIX}/lib -syslibroot,/Developer/SDKs/MacOSX10.6.sdk"

I then run: 然后我跑:

sudo make -f make.osx mpl_build

which gives me: 这给了我:

export PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" &&\
    export MACOSX_DEPLOYMENT_TARGET=10.6 &&\
    export CFLAGS="-Os -arch x86_64 -arch i386 -I/usr/local/include" &&\
    export LDFLAGS="-arch x86_64 -arch i386 -L/usr/local/lib" &&\
    python2.6 setup.py build

... snip ...

gcc-4.2 -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -Os -arch x86_64 -arch i386 -I/usr/local/include -pipe -DPY_ARRAYAUNIQUE_SYMBOL=MPL_ARRAY_API -I/Library/Python/2.6/site-packages/numpy/core/include -I. -I/Library/Python/2.6/site-packages/numpy/core/include/freetype2 -I./freetype2 -I/System/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -c src/ft2font.cpp -o build/temp.macosx-10.6-universal-2.6/src/ft2font.o
cc1plus: warning: command line option "-Wstrict-prototypes" is valid for C/ObjC but not for C++
In file included from src/ft2font.h:13,
                 from src/ft2font.cpp:1:
/usr/local/include/ft2build.h:56:38: error: freetype/config/ftheader.h: No such file or directory

... snip ...

src/ft2font.cpp:98: error: ‘FT_Int’ was not declared in this scope
/Library/Python/2.6/site-packages/numpy/core/include/numpy/__multiarray_api.h:1174: warning: ‘int _import_array()’ defined but not used
lipo: can't open input file: /var/tmp//ccDOGx37.out (No such file or directory)
error: command 'gcc-4.2' failed with exit status 1
make: *** [mpl_build] Error 1

I'm just lost. 我迷失了。

According to your error message you have missing freetype headers. 根据您的错误消息,您丢失了freetype标头。 Can you locate them using system search functionalities. 您能使用系统搜索功能找到它们吗? I will not lecture on using a pre-built package since I love scratching my head and compiling from the start as well. 我不打算使用预先构建的软件包,因为我喜欢从头开始编写并从头开始编译。

This solution worked for me on OSX 10.8.3: 这个解决方案适用于OSX 10.8.3:

ln -s /usr/local/include/freetype2/freetype/ /usr/include/freetype

(Credit really goes to: http://simpleyuan.blogspot.com/2012/08/matplotlib-error-mac-os-x.html ) (信誉真的去: http//simpleyuan.blogspot.com/2012/08/matplotlib-error-mac-os-x.html

You can also build by using 您也可以使用构建

$ python setup.py build

with the following patch applied to setupext.py 将以下补丁应用于setupext.py

Index: setupext.py
===================================================================
--- setupext.py (revision 7917)
+++ setupext.py (working copy)
@@ -334,6 +334,8 @@

     module.include_dirs.extend(incdirs)
     module.include_dirs.append('.')
+    module.include_dirs.append('/usr/local/include')
+    module.include_dirs.append('/usr/local/include/freetype2')
     module.library_dirs.extend(libdirs)

 def getoutput(s):

For Python.org 2.7.1: 对于Python.org 2.7.1:

I used a mix of the instructions. 我使用了混合的说明。 It basically worked by using the libpng in OSX's /usr/X11 它基本上可以在OSX的/ usr / X11中使用libpng

  1. Downloaded, built and installed (make install) freetype2 v2.4.4 & zlib v1.2.5. 下载,构建和安装(make install)freetype2 v2.4.4&zlib v1.2.5。 Did not use make deps. 没有使用make deps。

  2. Modified setupext.py to have 修改后的setupext.py

     module.include_dirs.extend(incdirs) module.include_dirs.append('.') module.include_dirs.append('/usr/local/include') module.include_dirs.append('/usr/local/include/freetype2') module.include_dirs.append('/usr/X11/include') module.library_dirs.extend(libdirs) module.library_dirs.append('/usr/local/lib') module.library_dirs.append('/usr/X11/lib') 
  3. Modified make.osx to include the same /usr/X11 info, png version 1.2.5 is OSX 10.6.6 current native 修改后的make.osx包含相同的/ usr / X11信息,png版本1.2.5是OSX 10.6.6当前原生的

     PYVERSION=2.7 PYTHON=python${PYVERSION} ZLIBVERSION=1.2.5 PNGVERSION=1.2.44 FREETYPEVERSION=2.4.4 MACOSX_DEPLOYMENT_TARGET=10.6 OSX_SDK_VER=10.6 ARCH_FLAGS="-arch i386-arch x86_64" PREFIX=/usr/local MACPREFIX=/usr/X11 PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig" CFLAGS="-arch i386 -arch x86_64 -I${PREFIX}/include -I${PREFIX}/include/freetype2 -I${MAXPREFIX}/include -isysroot /Developer/SDKs/MacOSX${OSX_SDK_VER}.sdk" LDFLAGS="-arch i386 -arch x86_64 -L${PREFIX}/lib -L/usr/X11/lib -syslibroot,/Developer/SDKs/MacOSX${OSX_SDK_VER}.sdk" FFLAGS="-arch i386 -arch x86_64" 
  4. Then the standard 然后是标准

     sudo make -f make.osx mpl_build sudo make -f make.osx mpl_install sudo python setup.py install 
  5. Crikey... seems to work. Crikey ......似乎有效。 Now have Image & MDP & pylab & matplotlib with 2.7.1 on 10.6.6 现在有10.6.6的Image&MDP&pylab&matplotlib,2.7.1

Image module (Imaging-1.7.7) works okay as long as you install libjpeg. 只要安装libjpeg,映像模块(Imaging-1.7.7)就可以正常工作。 I used jpegsrc.v8c and it seemed happy enough. 我使用了jpegsrc.v8c ,看起来很开心。

I just got it to compile. 我刚刚编译好了。 I added freetype2 in the include path for the CFLAGS in the make.osx file. 我在make.osx文件中的CFLAGS的include路径中添加了freetype2。 Now the top of make.osx is: 现在make.osx的顶部是:

PREFIX=/usr/local

PYVERSION=2.6
PYTHON=python${PYVERSION}
ZLIBVERSION=1.2.3
PNGVERSION=1.2.33
FREETYPEVERSION=2.3.5
MACOSX_DEPLOYMENT_TARGET=10.6

## You shouldn't need to configure past this point

PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig"
CFLAGS="-Os -arch x86_64 -arch i386 -I${PREFIX}/include -I${PREFIX}/include/freetype2"
LDFLAGS="-arch x86_64 -arch i386 -L${PREFIX}/lib"
CFLAGS_DEPS="-arch i386 -arch x86_64 -I${PREFIX}/include -I${PREFIX}/include/freetype2 -isysroot /Developer/SDKs/MacOSX10.6.sdk"
LDFLAGS_DEPS="-arch i386 -arch x86_64 -L${PREFIX}/lib -syslibroot,/Developer/SDKs/MacOSX10.6.sdk"

Then I ran these commands, and it compiled and installed perfectly. 然后我运行这些命令,它编译和安装完美。

sudo make -f make.osx mpl_build
sudo make -f make.osx mpl_install

as suggested elsewhere, macports works fine on multiple architecture and versions of MacOsX + allows updates and more: 正如其他地方所建议的那样,macports在多种架构上运行良好,MacOsX +版本允许更新等等:

$ port search matplot
py-matplotlib @0.99.0 (python, graphics, math)
    matlab-like syntax for creating plots in python

py-matplotlib-basemap @0.99.4 (python, graphics, math)
    matplotlib toolkit for plotting data on map projections

py25-matplotlib @0.99.0 (python, graphics, math)
    matlab-like syntax for creating plots in python

py25-matplotlib-basemap @0.99.4 (python, graphics, math)
    matplotlib toolkit for plotting data on map projections

py26-matplotlib @0.99.0 (python, graphics, math)
    matlab-like syntax for creating plots in python

py26-matplotlib-basemap @0.99.4 (python, graphics, math)
    matplotlib toolkit for plotting data on map projections

Found 6 ports.
$

in your case, simply issue : 在您的情况下,只需发出:

$ sudo port install py26-matplotlib

it features the macosx backend (native cocoa) as default 它默认使用macosx后端(本机可可)

You should really ask this on the matplotlib-users mailing list. 你应该在matplotlib-users邮件列表上问这个问题。 It's monitored by actual matplotlib developers, which StackOverflow (AFAIK) isn't. 它由实际的matplotlib开发人员监控,StackOverflow(AFAIK)不是。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM