I am trying to install graph-tool
from here: http://anaconda.org/vgauthier/graph-tool, using the command mentioned on that page.
I used the given comman
Conda needs to be able to find all the dependencies at once. The -c
flag only adds that channel for that one command. You would need to run conda install -c vgauthier rwest graph-tool
. But an easier way is to add those channels to your configuration
conda config --add channels vgauthier --add channels rwest
Once you do this, you can just run
conda install graph-tool
and it will grab things from those channels.