问题描述:使用hiddenlayer可视化网络结构时,报错graphviz 没有安装。使用pip install graphviz安装后报错graphviz.backend.ExecutableNotFound: failed to execute ‘dot‘, make sure the Graphviz executables are on your system path。
原因:使用pip 安装graphviz后没有配置系统环境变量。
解决方法:需要配置环境变量
问题二:由于pip 安装的graphviz在anaconda中的环境中没有bin文件夹。所以需要自己去官网下载graphviz,并自己安装。
Graphviz的官网下载:https://graphviz.gitlab.io/_pages/Download/Download_windows.html,下载后按照提示进行安装就可以了;
安装时,不配置系统环境变量。安装后将/graphviz文件复制到Anaconda中对应的环境中,再配置环境变量。之后重启pycharm就可以。