3

我正在使用 Python 通过pydot.Dot.

当我想将图形写入 PNG 时,我使用pydot.Dot.write_png(...). 不幸的是,它在找到 graphviz 的阶段失败了(在一个名为 的函数中find_graphviz)。

我尝试将它作为软件安装,但我不知道如何将它导入 Python。

我怎么解决这个问题?

4

2 回答 2

4

即使将 Graphviz 添加到我的 PATH 之后,它也无法正常工作。我最终进入 pydot.py 文件并注释掉 find_graphviz() 中的所有内容并在行中写入:

`return {'dot': 'C:\\Program Files\\graphviz-2.38\\bin\\dot.exe'}`

那是我的点文件所在的位置,您可能将它放在不同的位置。

于 2015-01-20T17:42:23.233 回答
1

尝试手动将 Graphviz\bin 文件夹添加到系统 PATH。

>>> import pydot
>>> pydot.find_graphviz()
{'dot': 'C:\\Program Files (x86)\\Graphviz 2.28\\bin\\dot.exe'} #...
>>> print pydot.find_graphviz.__doc__
"""
Locate Graphviz's executables in the system.

    Tries three methods:

    First: Windows Registry (Windows only)
    This requires Mark Hammond's pywin32 is installed.

    Secondly: Search the path
    It will look for 'dot', 'twopi' and 'neato' in all the directories
    specified in the PATH environment variable.

    Thirdly: Default install location (Windows only)
    It will look for 'dot', 'twopi' and 'neato' in the default install
    location under the "Program Files" directory.

    It will return a dictionary containing the program names as keys
    and their paths as values.

    If this fails, it returns None.
"""
于 2013-05-08T08:12:06.210 回答