我将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库?
答案 0 :(得分:2)
来自INSTALL
文件:
如果您已经安装了非标准位置的先决条件并且需要 告知matplotlib它们在哪里,编辑
setupext.py
并添加 基础dirs到你的basedir
字典条目sys.platform
。例如,如果某个所需库的标题位于/some/path/include/someheader.h
,将/some/path
放入。{1}} 您的平台的basedir
列表。