当前位置: 代码迷 >> 综合 >> OSError: `pydot` failed to call GraphViz.Please install Graph
  详细解决方案

OSError: `pydot` failed to call GraphViz.Please install Graph

热度:45   发布时间:2023-12-15 17:39:04.0

keras模型可视化报错和解决

环境:win10, pycharm

【报错】OSError: `pydot` failed to call GraphViz.Please install GraphViz (https://www.graphviz.org/) and ensure that its executab

【原因】没有安装GraphViz或没有添加path或没有重启pycharm

【解决】

第一步:pip install GraphViz

第二步:在官网下载GraphViz(选择Stable 2.38 Windows install packages)的zip文件,解压,复制到想要放的位置,将bin目录添加到系统path。重启pycharm,再次运行程序

【致谢】https://blog.csdn.net/tina_ttl/article/details/51778551

  相关解决方案