I execute the code following on my machine (Win10, python 2.7, Anaconda & Spyder) and encounter ImportError: No module named pydotplus .
import networkx as nx from networkx.drawing.nx_pydot import write_dot G = nx.DiGraph([(1,2),(2,3),(3,2)]) write_dot(G,'file.dot')
It is clear that I have to install the pydotplus package. I try conda install pydotplus directly, but says Error: Package missing in current win-64 channels . Then I google it , but did not find that there is no information on how to install it on conda. By the way, I installed pydot on conda before.
Thanks for the help!
source share