今天晚上解决了一个错误,如下:
解决方法:
一、
安装graphviz-2.38
1.添加系统环境变量
.建立变量名GRAPHVIZ_DOT
值为安装的路径C:\Program Files (x86)\Graphviz2.34\bin\dot.exe
2. 设置环境变量 在用户环境变量添加以下一个变量
.建立变量名 GRAPHVIZ_INSTALL_DIR, 值为如C:\Program Files (x86)\Graphviz2.34
3 在系统环境变量 建立变量名PATH中添加Graphviz的bin目录路径,如C:\Program Files (x86)\Graphviz2.34\bin
二、
安装 graphviz-0.6
Python setup.py install
三、
>>> from graphviz import Digraph
>>> dot = Digraph(comment=‘The Round Table‘)
>>> dot.node(‘A‘, ‘King Arthur‘)
>>> print(dot.source)
// The Round Table
digraph {
A [label="King Arthur"]
}
>>> dot.render(‘test-output/round-table.gv‘, view=True)
‘test-output/round-table.gv.pdf‘
结果:
时间: 2024-10-10 15:38:52