“dot.exe” not found in path. Pydot on Python (Windows 7)
I'm having trouble running Python's pydot on Windows 7. I installed pydot with: conda install -c rmg pydot=1.2.2 I have graphviz installed under ../Program Files (x86)/Graphviz2.38/ When I run the following script I get an error saying "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