Reputation:
I do have graphviz in the following location
C:\Anaconda3\Library\bin\graphviz
and in the envirnment
but I still get an error code
GraphViz's executables not found
Upvotes: 0
Views: 8788
Reputation:
Actually I solved it by adding the following
import os
os.environ["PATH"] += os.pathsep + 'C:\\Anaconda3\\Library\\bin\\graphviz'
Upvotes: 9