Anaconda Python: How to install missing dependency?

后端 未结 1 1111
一生所求
一生所求 2020-12-11 04:09

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

相关标签:
1条回答
  • 2020-12-11 04:55

    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.

    0 讨论(0)
提交回复
热议问题