Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

keras plot_model tells me to install pydot

I'm using python 3.6.3 on a windows 10 machine. I installed pydot and graphviz using pip install via:

    py -m pip install pydot
    py -m pip install graphviz

I also went to the graphviz website and downloaded and installed the windows version here: http://www.graphviz.org/Download_windows.php which default installed to program files(x86). But when I go to plot my model in keras, I still get the error saying I have to install pydot and graphviz and that the import failed. I can do

    import pydot
    import graphviz

on my python console just fine, they throw no errors. What else should I do to be able to graph my neural net?

like image 322
enumaris Avatar asked Nov 08 '17 20:11

enumaris


4 Answers

The path(s) to the installed GraphViz executables (dot, neato, etc.) need to be in the PATH environment variable, in order for pydot to find them. pydot used to search for those executables in earlier versions, but not any more.

Also:

  1. pydot is a Python package.
  2. GraphViz is a collection of tools written in C for computing graph layouts
  3. graphviz is a Python package entirely unrelated to pydot. These two Python packages do not interact in any way with each other. Installing one of them should suffice (together with GraphViz).

See also:

  • https://github.com/erocarrera/pydot/issues/126
  • https://github.com/erocarrera/pydot/commit/812e3c40dac1e0225391481073c64da5bafba93e#commitcomment-18236709
  • https://github.com/erocarrera/pydot/commit/812e3c40dac1e0225391481073c64da5bafba93e#commitcomment-18222580

and links from there.

like image 165
Ioannis Filippidis Avatar answered Nov 08 '22 02:11

Ioannis Filippidis


I solved this problem by installing the packages with :

conda install graphviz
conda install pydot
conda install pydotplus
like image 43
Baya Lina Avatar answered Sep 28 '22 08:09

Baya Lina


Complementing @Ioannis answer, you have to install GraphViz executables via conda (conda install GraphViz).

For my case, after installing GraphViz I tried with the latest pydot (pip install pydot) and the error was resolved.

like image 2
Md Hishamur Rahman Avatar answered Nov 08 '22 02:11

Md Hishamur Rahman


Just to complete the @dataLeo 's solution, Python 3 users can use pydotplus package instead of pydot-ng package. To summarize:

  1. install pydot+graphviz and pydotplus by commands "conda install pydot" and "conda install -c conda-forge pydotplus".
  2. Go to the vis_utils.py file and change line 11 from import pydot to import pydotplus as pydot.

PS: You can locate the vis_utils.py file by checking help for plot_model command in ipython console, i.e. after from keras.utils import plot_model, type ??plot_model in ipython console.

Tested on Windows 10-64 bit with Anaconda python-3.6

like image 1
tu_curious Avatar answered Nov 08 '22 02:11

tu_curious