安装graphviz后能用,但render函数仍报错

安装graphviz后,仍出现问题:
graphviz.backend.ExecutableNotFound: failed to execute [‘dot’, ‘-Tpdf’, ‘-O’, ‘iris’], make sure the Graphviz executables are on your systems’ PATH

搜了很多解决:

1.环境变量设置:计算机 -> 属性 -> 高级设置 -> 环境变量 -> 系统(Path)更改为 graphviz 安装目录中的 bin 文件夹

2.官网安装包

3.将bin文件拷贝到原始 Path 路径

3.不用conda install, 用pip install

都未果

最终解决方案:

import os
os.environ[‘PATH’] += os.pathsep + ‘D:/prodata/graphviz/bin/’

即导入 graphviz 所在路径

说明之前都未将路径导入成功,but … why ???

成功来源:

链接:[link]https://dataquestion.com/question/5125

你可能感兴趣的:(python)