Graphviz's Executables Not Found - Why Are There No Executables Installed After Installation Of Graphviz Via Pip?
Solution 1:
As I understood from comments, you've installed graphviz with pip. Thing is, that package named graphviz in pip is just a python interface for graphviz application. In other words, it's something similar to the pydotplus package that you try to get working.
What these packages do is give you few classes and methods for you to mess around in your Python code, and when it's time to render graph, they just call the graphviz binary and send it the generated dot source code. Of course, for them to work, you have to have the mentioned graphviz binary installed on your machine.
What you need to do is download and run graphviz installer (link for Windows), which is not connected with python and pip in any way. After installing it you will get your Graphviz folder in Program Files, with graphviz executables inside.
Probably you will need to add this folder to your PATH before working with pydotplus.
To check if everything's set up, run this command:
> dot -?
You should see the dot command manual page.
Post a Comment for "Graphviz's Executables Not Found - Why Are There No Executables Installed After Installation Of Graphviz Via Pip?"