When I try to install pydot it says that I have already installed it.
But whenever I try to import it I get an error saying :
Failed to import pydot. You must install pydot and graphviz for pydotprint
to work.
This is my code:
model.summary()
import pydot
from keras.utils import plot_model
plot_model(model, to_file='model.png')
I am using python 3.6.3 on jupyter notebook.