anaconda – graphviz – can’t import after installation

The graphviz conda package is no Python package. It simply puts the graphviz files into your virtual env’s Library/ directory. Look e.g. for dot.exe in the Library/bin/ directory. To install the graphviz Python package, you can use pip: conda install pip and pip install graphviz. Always prefer conda packages if they are available over pip … Read more

tech