Anaconda Python: how to install the missing dependencies?

I'm trying to set graph-tool here: http://anaconda.org/vgauthier/graph-tool , using the command specified on this page.

I used the specified command line:

 conda install -c http://conda.anaconda.org/vgauthier graph-tool 

and I get the following error:

Error: could not find some dependencies for the graphical tool: pixman

So I tried to install pixman the same way: http://anaconda.org/rwest/pixman .

 conda install -c http://conda.anaconda.org/rwest pixman 

It failed.

However, when you try to install graph-tool still exists error "unable to find dependency". Why is this happening and how can I fix it? No additional error messages that I might continue.

+4
source share
1 answer

Konda should be able to immediately find all the dependencies. Flag -c adds only this channel for this command. You will need to run conda install -c vgauthier rwest graph-tool . But the easiest way is to add these channels to your configuration.

 conda config --add channels vgauthier --add channels rwest 

Once you do this, you can simply run

 conda install graph-tool 

and he will grab things from these channels.

+2
source

All Articles