For a given conda package, how to I list the packages that depend on it?
conda
I recently installed anaconda on a university cluster that al
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.