pydotplus、Graphviz 安装配置 发表于 2020-11-10 更新于 2021-01-14 本文字数: 421 阅读时长 ≈ 1 分钟 pydotplus、Graphviz 安装配置 1. pip 安装 123# 打开annocada prompt输入:pip install pydotpluspip install graphviz 2. 手动下载安装 Graphviz 下载地址:http://www.graphviz.org/download/ 3. 配置 Graphviz 环境变量 问题 InvocationException: GraphViz's executables not found 解决方案 参考: https://blog.csdn.net/hawk_2016/article/details/82254228 12import osos.environ["PATH"] += os.pathsep + 'D:/Program Files (x86)/Graphviz2.38/bin/' #注意修改你的路径 参考 感谢帮助! InvocationException: GraphViz's executables not found 解决方案