Alright, so I installed Anaconda 2.3.2 and run it as admin, then I tried to import the package graphviz, so I installed it with:
conda install -c anaconda graphviz
which is what was recommended in the (official documentation for anaconda)
however, when I tried to import the package with either:
import graphviz
or just a function with
from graphviz import Source
I get the same error:
ModuleNotFoundError: No module named 'graphviz'
I tried installing the package again, but anaconda doesn't seem to recognize it (I'm using a jupyter notebook and everything else runs alright). Is there some other path that it's missing or something?
I tried reinstalling anaconda from scratch, but that didn't work either.