Hi,
Yes, I did install everything for the same environment within anaconda, not the system python environment.
I can run the pygraphviz.test() without any problem. I noticed the example code was temporarily modified last Friday into:
try:
import pygraphviz
from networkx.drawing.nx_agraph import graphviz_layout
except ImportError:
try:
import pydotplus
from networkx.drawing.nx_pydot import graphviz_layout
except ImportError:
raise ImportError("This example needs Graphviz and either "
"PyGraphviz or PyDotPlus")
In this case, I can run the example without any problem. I guess the old import:
try:
from networkx import graphviz_layout
except ImportError:
raise ImportError("This example needs Graphviz and either PyGraphviz or Pydot")
tried to use pydot, which I don't successfully installed.