本文介绍了如何安装pydot& Google Colab上的graphviz?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在google colab上绘制模型.
I'm trying plot my model on the google colab.
from keras.utils import plot_model
plot_model(model, to_file="model.png")
我收到此错误:
ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work.
我已经安装了pydot-ng
和graphviz
,但仍然无法解决此错误.
I've installed pydot-ng
and graphviz
and I'm still can't get through this error.
推荐答案
要安装pydot
,请运行:
!pip install -q pydot
然后,重新启动您的VM以重新加载keras,然后应检测pydot的存在. (运行时菜单->重新启动运行时...)
Then, restart your VM to reload keras which should then detect pydot's existence. (Runtime menu -> Restart runtime...)
这篇关于如何安装pydot& Google Colab上的graphviz?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!