0
我必須在Jupyter筆記本上運行以下代碼。Python 3.4 graphviz問題
from graphviz import Digraph
dot = Digraph(comment='The Round Table')
dot.node('A', 'King Arthur')
dot.node('B', 'Sir Bedevere the Wise')
dot.node('L', 'Sir Lancelot the Brave')
dot.edges(['AB', 'AL'])
dot.edge('B', 'L', constraint='false')
print(dot.source)
dot.render('test-output/round-table.gv', view=True)
我必須事先安裝graphviz。在Windows 10上安裝graphviz 2.38後,我做了'pip install graphviz' 和'conda install graphviz'。但我得到這個錯誤
「RuntimeError:未能執行[‘點’,‘-Tsvg’],確保Graphviz的可執行文件是您的系統路徑」
我應該做的還有什麼,使這個錯誤消失了?