问题
环境:ubuntu20
keras ==2.3.1
报错位置:plot_model()
- 提示没有安装pydot
pip install pydot
2.再次报错
pydot
failed to call GraphViz
然后百度查阅资料
得到结果 pydot的问题,pydot已经停止开发了,不支持python3.5以上
解决方法
1。卸载pydot 安装pydotplus
pip unistall pydot
pip install pydotplus
- 然后找到
keras.utils
源文件
tips: pychram按住ctrl 点击即可
-
进入init文件再进入plot_model包(方法同上)
-
替换”pydot“为”pydotplus“
pycharm 按住ctrl+r 即可如图
-
安装Graphpy
conda install graphviz
#在你的虚拟环境中安装
网友评论