【Graphviz】GraphViz's executables not found 错误的解决方法

GraphViz可用于实现决策树可视化。

 conda install python-graphviz

在conda中安装了graphviz之后,在解释器中调用时仍然出现“GraphViz’s executables not found”报错。

查阅资料后发现,Graphviz不是一个python tool,需要在系统中安装GraphViz’s executables才可使用。

下载GraphViz’s executables地址

配置环境变量,将graphviz安装目录下的bin文件夹添加到Path环境变量中。

命令行dot -version,如果显示graphviz的相关版本信息,则安装配置成功。若未成功添加,则Python中运行仍然出错:’ExecutableNotFound: failed to execute [‘dot’, ‘-Tpdf’, ‘-O’, ‘iris’], make sure the Graphviz executables are on your systems’ PATH‘

你可能感兴趣的:(Python,MEMO)