Windows下安装Graphviz

Windows下安装Graphviz

在研究TensorFlow时,使用了plot_model函数,出现一下错误:

OSError: `pydot` failed to call GraphViz.Please install GraphViz (https://www.graphviz.org/) and ensure that its executables are in the $PATH.

使用

pip install GraphViz

无果,发现需要手工安装GraphViz。下载链接: GraphViz 下载.
Windows下安装Graphviz_第1张图片

下载那个graphviz-2.38.msi

默认安装就oK。

Windows下安装Graphviz_第2张图片

设置环境变量

记得上图的路径,请将

C:\Program Files (x86)\Graphviz2.38\bin

添加到path环境变量中Windows下安装Graphviz_第3张图片
至此,Graphviz安装完成。重启Spyder,再次运行。
Windows下安装Graphviz_第4张图片
未报错成功!

你可能感兴趣的:(Windows下安装Graphviz)