我下载了Graphviz 2.38 MSI版本,安装在C:\Python34文件夹下,然后运行pip安装Graphviz,一切顺利。在系统路径中我添加了C:\Python34\bin。当我试图运行一个测试脚本,在行filename= .render(filename='test'),我得到了一个消息

 RuntimeError: failed to execute ['dot', '-Tpdf', '-O', 'test'], make sure the Graphviz executables are on your systems' path

我尝试将“C:\Python34\bin\dot.exe”放在系统路径中,但它不起作用,我甚至创建了一个新的环境变量“GRAPHVIZ_DOT”,其值为“C:\Python34\bin\dot.exe”,仍然不起作用。我尝试卸载Graphviz和pip uninstall Graphviz,然后重新安装它和pip install,但没有任何工作。

整个回溯消息是:

Traceback (most recent call last):
  File "C:\Python34\lib\site-packages\graphviz\files.py", line 220, in render
    proc = subprocess.Popen(cmd, startupinfo=STARTUPINFO)
  File "C:\Python34\lib\subprocess.py", line 859, in __init__
    restore_signals, start_new_session)
  File "C:\Python34\lib\subprocess.py", line 1112, in _execute_child
    startupinfo)
FileNotFoundError: [WinError 2] The system cannot find the file specified

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\Documents\Kissmetrics\curves and lines\eventNodes.py", line 56, in <module>
    filename=dot.render(filename='test')
  File "C:\Python34\lib\site-packages\graphviz\files.py", line 225, in render
    'are on your systems\' path' % cmd)
RuntimeError: failed to execute ['dot', '-Tpdf', '-O', 'test'], make sure the Graphviz executables are on your systems' path

有人有经验吗?


当前回答

对于windows,这两个命令适用于我,在以管理员身份运行的power shell中。

PIP安装graphviz Choco安装graphviz

其他回答

只需将下面添加到您的环境变量(系统)PATH 在Windows上

C:\Program Files (x86)\ Graphviz2.38\bin 在那里,你可以找到.exe文件

如果不工作

在程序文件中找到Graphviz2.38/bin文件夹,而不是在python lib中

然后,添加到您的PATH

找到存在.exe文件的文件夹很重要

这个应该可以解决MacOS上的问题:

brew install graphviz

步骤1:安装Graphviz二进制文件

窗口:

从http://www.graphviz.org/download/下载Graphviz 将以下内容添加到PATH环境变量(提到已安装的graphviz版本): C:\Program Files (x86)\ Graphviz2.38\bin C:\Program Files (x86)\ Graphviz2.38\bin\dot.exe 关闭任何打开的Juypter笔记本电脑和命令提示符 重新启动Jupyter / cmd提示符并测试

Linux:

Sudo apt-get update Sudo apt-get安装graphviz 或者从http://www.graphviz.org/download/手动构建

步骤2:安装python的graphviz模块

皮普:

PIP安装graphviz

第二:

康达安装图形可视化

在为自己解决这个问题时,我使用了这个GitHub教程,它分析了这个问题的原因。如果我们从字里行间读出来,它说它需要system以及python graph viz。除了conda install之外,我们还需要运行:

conda install -c conda-forge python-graphviz

然后重新启动内核;这招很管用。

我使用的是windows10,我尝试在程序文件中安装graphwiz并设置路径:对我不起作用

试着

conda install -c anaconda graphviz

是行不通的。

然后试着

conda install python-graphviz

它工作了,似乎我们的python编译器无法访问Graphwiz。因此python-graphwize起作用了。 PIP安装graphviz也不工作。