from sklearn.tree import export_graphviz也就是通过pip安装了GraphViz可视化工具字后,在执行graph = pydotplus.graph_from_dot_data(dot_data.getvalue())
graph.write_pdf(“iris1.png”)时,报错了:GraphViz’s executables not found
解决方法:
第一步:
下载安装GraphViz
第二步:
在环境变量中path中设置:C:/Graphviz/bin/(这是我放置的位置,你自己的Graphviz放在那里,就变成什么)
重启动一下jupyter notebook
可以使用了
GraphViz's executables not found问题
最新推荐文章于 2024-05-22 18:46:47 发布