ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work
The following commands solved the problem for me pip install pydot pip install pydotplus sudo apt-get install graphviz
The following commands solved the problem for me pip install pydot pip install pydotplus sudo apt-get install graphviz
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: I get the following error at runtime: Now I am sure I have properly installed the correct dependencies. I first tried to set the correct environment variables. The graphviz executables … Read more
I also had this problem on Ubuntu 16.04. Fixed by running sudo apt-get install graphviz in addition to the pip install I had already performed.
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: I get the following error at runtime: Now I am sure I have properly installed the correct dependencies. I first tried to set the correct environment variables. The graphviz executables … Read more