当我尝试安装pydot时,它说我已经安装了它。
但是每当我尝试导入它时,我都会收到一条错误消息:
无法导入pydot。您必须安装pydot和graphviz才能使pydotprint
运行。
这是我的代码:
model.summary()
import pydot
from keras.utils import plot_model
plot_model(model, to_file='model.png')
我在jupyter笔记本上使用python 3.6.3。
最佳答案
从> http://www.graphviz.org/Download_windows.php下载graphviz的MSI版本
将C:\ Program Files(x86)\ Graphviz2.38 \ bin添加到PATH中的系统变量中
关于python - 即使安装后也无法导入pydot,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47077433/