What does conda do when “solving environment”

后端 未结 3 1550
盖世英雄少女心
盖世英雄少女心 2021-02-02 05:22

Whenever I run conda install/remove/update , it tells me it\'s \"Solving environment\" for some time before telling me the list of things it\'s going

3条回答
  •  情书的邮戳
    2021-02-02 06:08

    You can add --debug option to the conda command and see the output from console(or terminal). For example, type conda update --debug numpy. From the output, we can see that the client requests repodata.json from channel list and do some computation locally in the Solving Environment Step.

提交回复
热议问题