Почему я получаю ошибку при смене двигателя? Все отлично работает с точечным движком.
Код:
from graphviz import Graph
dot = Graph()
dot.engine = 'neato'
dot.node('a')
dot.node('b')
dot.edge('a', 'b')
print(dot.source)
dot.render('test-output/round-table.gv', view=True)
Ошибка:
graphviz.backend.ExecutableNotFound: failed to execute
['neato', '-Tpdf', '-O', 'test-output/round-table.gv'],
make sure the Graphviz executables are on your systems' PATH