How Do I Install Pygraphviz With Pip
this is brew list and pip list (lebienv) ➜ lebi git:(master) ✗ brew list graphviz libpng libxml2 mysql openssl (lebienv) ➜ lebi git:(master) ✗ pip list
Solution 1:
Setting library_dirs
and include_dirs
as suggested in the error message worked for me. This article shows how to set them. However, first make sure pygraphviz
is actually installed.
pip install --install-option="--include-path=/usr/local/include/graphviz/" --install-option="--library-path=/usr/local/lib/graphviz" pygraphviz
Solution 2:
Have you tried
pip install git+git://github.com/pygraphviz/pygraphviz.git
as suggested in this issue ?
Post a Comment for "How Do I Install Pygraphviz With Pip"