Python GraphViz's executables not found 报错问题

使用决策树作图的时候出现报错,解决方法如下(适用windows):

1、删除在pip(conda同理)下安装的相关模块:

pip uninstall pydotplus

pip uninstall GraphViz

2、在官网手动下载GraphViz的安装包并安装

地址在这

选择:graphviz-2.38.msi

3、安装完成后,将安装目录下的bin 文件夹,添加到系统环境变量(在系统变量中的path里添加)

4、执行pip install pydotplus

5、关闭IED,务必重启电脑

6、重启后程序即可运行

你可能感兴趣的:(Python学习)