No Module Named 'Graphviz' in Jupyter Notebook

I tried to draw a decision tree in Jupyter Notebook this way.

mglearn.plots.plot_animal_tree()

But I didn't make it in the right way and got the following error message.

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-65-45733bae690a> in <module>()
      1 
----> 2 mglearn.plots.plot_animal_tree()

~\Desktop\introduction_to_ml_with_python\mglearn\plot_animal_tree.py in plot_animal_tree(ax)
      4 
      5 def plot_animal_tree(ax=None):
----> 6     import graphviz
      7     if ax is None:
      8         ax = plt.gca()

ModuleNotFoundError: No module named 'graphviz

So I downloaded Graphviz Windows Packages and installed it.

And I added the PATH installed path(C:\Program Files (x86)\Graphviz2.38\bin) to USER PATH and (C:\Program Files (x86)\Graphviz2.38\bin\dot.exe) to SYSTEM PATH.

And restarted my PC. But it didnt work. I still can't get it working.

So I searched over the internet and got another solution that, I can add the PATH in my code like this.

import os
os.environ["PATH"] += os.pathsep + 'C:/Program Files (x86)/Graphviz2.38/bin'

But it didn't work. So I do not know how to figure it out now.

I use the Python3.6 integrated into Anacode3.

And I ALSO tried installing graphviz via PIP like this.

pip install graphviz

BUT it still doesn't work.

Hope someone can help me, sincerely.

4

5 Answers

in Anaconda install

  • python-graphviz
  • pydot

This will fix your problem

4

As @grrr answered above, here is the code:

conda install -c anaconda python-graphviz

conda install -c anaconda pydot

In case if your operation system is Ubuntu I recommend to try command:

sudo apt-get install -y graphviz libgraphviz-dev

I installed the grphviz package using conda. However, I kept getting "module not found error" even after restart kernel multiple times.

I even tried installing "PyDot", as suggested on this page, however, it didn't really help.

Finally, I installing the package using

pip install graphviz

worked and now I can import it without errors.

I know the question has already been answered, but for future readers, I came here with the same jupyter notebook issue; after installing python-graphviz and pydot I still had the same issue. Here's what worked for me: Make sure that the python version of your terminal matches that of the jupyter notebook, so run this both in python in your terminal and then in your juypter notebook. If you are using a conda environment, load the environment before checking the python version.

import sys

print(sys.version)

If they do not match, i.e. python 3.6.x vs python 3.7.x then give your jupyter notebook the ability to find the version of python you want.

conda install nb_conda_kernels

conda install ipykernel

and if you are using a conda environment,

python -m ipykernel install --user --name myenv--display-name "Python (myenv)"

where myenv is the name of your environment. Then go into your jupyter notebook, and in kernel -> change kernel, select the correct version of python. Fixed the issue!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

James H. Sterling

James H. Sterling

Environmental Science & Climate Journalist

James Sterling reports on renewable energy developments, climate policy, ecological conservation, and green tech innovations around the globe.

Share this article
Twitter Facebook Pinterest