How to identify conda package dependents?

前端 未结 6 2111
被撕碎了的回忆
被撕碎了的回忆 2020-12-25 11:29

For a given conda package, how to I list the packages that depend on it?

I recently installed anaconda on a university cluster that al

6条回答
  •  再見小時候
    2020-12-25 11:58

    With recent versions of conda, you can do

    conda remove --dry-run 
    

    to get a list of packages that would be uninstalled along with the given one.

提交回复
热议问题