我参考了可视化sklearn决策树的结构里面的代码
graph = graphviz.Source(dot_data)
但是报错
InvocationException: GraphViz's executables not found
我用的是centos系统,而且python里装了sklearn和graphviz,不知道这个问题怎么解决
1个回答
这个问题和python没有关系,是你的操作系统里没有graphviz
mac上
brew install graphviz
centos上
yum install graphviz
谢谢,yum之后就可以了
-
hnh100
2018-12-01 01:30