OSError: pydot failed to call GraphViz.Please install GraphViz问题解决

OSError: pydot failed to call GraphViz.Please install GraphViz问题解决

在keras可视化模型输出时,往往用:

from keras.utils import plot_model
plot_model(model, to_file=‘model.png’)

在此前,下面的操作是必须的
1.pip3 install pydot
2.pip3 install graphviz
3.pip3 install pydot-ng
4.Windows 安装 graphviz-2.38.msi客户端下载地址
5.将’C:/Program Files (x86)/Graphviz2.38/bin/'添加进环境的Path
6.重启电脑

前三步可以直接在pycharm中的File–>setting–>project Interpreter中操作。
第四部,进入客户端下载地址:
这两个文件都可以
OSError: pydot failed to call GraphViz.Please install GraphViz问题解决_第1张图片
下载后默认安装就可以了。
环境变量配置

点击环境变量:
OSError: pydot failed to call GraphViz.Please install GraphViz问题解决_第2张图片
选择系统变量中的path变量
OSError: pydot failed to call GraphViz.Please install GraphViz问题解决_第3张图片
在path的变量值下添加:C:\Program Files (x86)\Graphviz2.38
OSError: pydot failed to call GraphViz.Please install GraphViz问题解决_第4张图片

你可能感兴趣的:(Python基础)