我的用例:我使用自制软件安装了graphviz。它在/usr/local/Cellar/graphviz
中安装了包含标题和动态库,这很棒。然后我尝试使用easy_install安装pygraphviz,但出现以下错误:
pygraphviz/graphviz_wrap.c:2954:10: fatal error: 'graphviz/cgraph.h'
file not found
#include "graphviz/cgraph.h"
我可以手动添加包含路径,但是链接器抱怨没有找到动态库。同样,我可以手动指定路径,但它似乎应该是Just Work(TM)。那么,为什么easy_install不能与自制软件安装的库一起使用呢?