从源安装matplotlib时使用本地目录

时间:2012-09-20 20:16:27

标签: python matplotlib makefile

我将freetype-2.4.10,libpng-1.5.12和zlib-1.2.7安装到本地目录中。现在,在matplotlib中我想做:

python setup.py install

当我为lxml做这个时,我做了类似的事情:

python setup.py install --with-xml2-config=/home/test/libxml2/bin/xml2-config --with-xslt-config=/home/test/libxslt/bin/xslt-config

如何将matplotlib指向正确的freetype,libpng和zlib库?

1 个答案:

答案 0 :(得分:2)

来自INSTALL文件:

  

如果您已经安装了非标准位置的先决条件并且需要   告知matplotlib它们在哪里,编辑setupext.py并添加   基础dirs到你的basedir字典条目   sys.platform。例如,如果某个所需库的标题位于   /some/path/include/someheader.h,将/some/path放入。{1}}   您的平台的basedir列表。