I am running Python3.4 on Windows 7. I am trying to use the Python interface for graphviz. This is a script I intend to run:
from graphviz import Digraph
imp
This is the fresh solution I've used :)
I got the same problem, I'm using Anaconda and Jupyter Notebook.
What I did to solve this problem is NOT to install Graphiz.zip from the intenet!
I just did these steps:
conda create -n [env_name]
conda install graphviz
import os os.environ['PATH'] = os.environ['PATH']+';'+os.environ['CONDA_PREFIX']+r"\Library\bin\graphviz"
Finally, The image is appeared, I made a small party for this because it took 3 days from me :(