我已经按照此处给出的命令安装了graphviz,以将其与Networkx一起使用
conda install -c alubbock pygraphviz
但是尝试运行此处给出的代码时出现问题
raise ValueError("Program %s not found in path." % prog)
ValueError: Program neato not found in path
我搜索了一下,发现Neato 缺少64 位版本。
这个问题还存在吗?有没有办法安装 Neato?
编辑:按照下面给出的说明,我在以下文件夹中安装了 Graphviz
C:\Program Files (x86)\Graphviz2.38
有人可以建议如何从这里开始吗?
import pygraphviz as pgv
不起作用。
所以我尝试了,
pip install pygraphviz
返回
pygraphviz/graphviz_wrap.c(2987): fatal error C1083: Cannot open include file: 'graphviz/cgraph.h': No such file or directory
error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit status 2
----------------------------------------
ERROR: Failed building wheel for pygraphviz
Running setup.py clean for pygraphviz
Failed to build pygraphviz
Installing collected packages: pygraphviz
Running setup.py install for pygraphviz ... error
我现在不确定如何安装 pygraphviz。