user9359930
user9359930

Reputation:

GraphViz's executables not found

I do have graphviz in the following location

C:\Anaconda3\Library\bin\graphviz

enter image description here

and in the envirnment

enter image description here

but I still get an error code

GraphViz's executables not found

Upvotes: 0

Views: 8788

Answers (1)

user9359930
user9359930

Reputation:

Actually I solved it by adding the following

import os     
os.environ["PATH"] += os.pathsep + 'C:\\Anaconda3\\Library\\bin\\graphviz'

Upvotes: 9

Related Questions