其他分享
首页 > 其他分享> > 可视化工具GraphViz安装问题——`pydot` failed to call GraphViz.Please install GraphViz

可视化工具GraphViz安装问题——`pydot` failed to call GraphViz.Please install GraphViz

作者:互联网

问题描述

报错信息如下:
Error: `pydot` failed to call GraphViz.Please install GraphViz (https://www.graphviz.org/) and ensure that its executables are in the $PATH.

经过分析及解决后的复盘:认为是keras可视化工具出现的问题,找不到pydot、找不到GraphViz、系统PATH环境没有graphviz

问题背景及分析

我的项目是使用的anaconda创建的虚拟环境。

对于这个报错,其实是有很大一段,本人只摘取了最后一句话,该句话中包含了很多的信息。


解决方案

常规方案:

  1. 官网下载GraphViz

  2. 配置PATH环境(通过我的电脑进入配置)

  3. pip安装GraphViz(pip install GraphViz)

但是直觉告诉我不靠谱,而且我觉得太麻烦。

便捷方案:

个人认为要充分利用conda特性,毕竟他就是用来隔离各个不同的开发环境。

  1. 通过conda进入项目所在虚拟环境

  2. pip安装GraphViz

  3. conda安装GraphViz

2行代码解决,完美!!



参考文献

Anaconda下安装Graphviz

标签:pydot,Please,GraphViz,报错,pip,PATH,安装
来源: https://www.cnblogs.com/virtual-zoe/p/16471167.html