Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install 'pygraphviz' through anaconda

I tried outputting one of my DiGraphs as follows: A=nx.drawing.nx_agraph.to_agraph(Graph) nx.drawing.nx_agraph.write_dot(dot_filename)

However I got :

ImportError: ('requires pygraphviz ', 'http://pygraphviz.github.io/')

Anaconda command windows says

graphviz 2.38.0 0 is already installed..

Can anybody help who managed to use Graphviz through Anaconda?

like image 412
Ozgu Avatar asked Apr 09 '16 17:04

Ozgu


1 Answers

You can try this:

conda install -c pdrops pygraphviz=1.2
like image 113
hgascon Avatar answered Nov 07 '22 08:11

hgascon