我在 Windows 7 上运行 Python 的 pydot 时遇到问题。
我安装了 pydot: conda install -c rmg pydot=1.2.2
我在下面安装了graphviz../Program Files (x86)/Graphviz2.38/
当我运行以下脚本时,我收到一条错误消息
"dot.exe" not found in path
import pydot
graph = pydot.Dot(graph_type='digraph')
node_a = pydot.Node("Node A", style="filled", fillcolor="red")
node_b = pydot.Node("Node B", style="filled", fillcolor="green")
node_c = pydot.Node("Node C", style="filled", fillcolor="#0000ff")
node_d = pydot.Node("Node D", style="filled", fillcolor="#976856")
graph.add_node(node_a)
graph.add_node(node_b)
graph.add_node(node_c)
graph.add_node(node_d)
graph.add_edge(pydot.Edge(node_a, node_b))
graph.add_edge(pydot.Edge(node_b, node_c))
graph.add_edge(pydot.Edge(node_c, node_d))
graph.add_edge(pydot.Edge(node_d, node_a, label="and back we go again", labelfontcolor="#009933", fontsize="10.0", color="blue"))
graph.write_png('example2_graph.png')
Exception: "dot.exe" not found in path.
我已经尝试过这个解决方案:通过添加带有指向
文件所在位置的行的文件,在 Python 中永久添加到 sys.path 的文件路径。但我仍然得到错误。my-paths.pth
../Graphiv2.38/bin/
dot.exe
我还能尝试什么?