I have installed pygraphviz using easy_install But when i launch python i have an error:
>>>import pygraphviz as pgv Traceback (most recent call las
On Mac OSX, the following did the trick for me:
pip install graphviz pip install cgraph export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig cd /usr/local/include/graphviz sudo ln -s . graphviz pip install pygraphviz
[As suggested, fixed typo from previously /urs/local/ to /usr/local/]