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.
Update: There exists now a python-graphviz
package at Anaconda.org which contains the Python interface for the graphviz
tool. Simply install it with conda install python-graphviz
.
(Thanks to wedran and g-kaklam for posting this solution and to endolith for notifying me).