Reputation: 4977
In chocolatey, this command can list out outdated packages;
choco outdated
What is the equivalent command in conda to list the outdated conda packages?
I am using python 3.8, anaconda 2020.07
Upvotes: 1
Views: 242
Reputation: 4977
Thanks to the hint provided in the comment by @cel, I will answer my own question.
The following command will do the trick;
conda update --all --dry-run
or
conda update --all -d
Running the command will show the output of what will be installed but not actually install it. This makes it safe from accidentally making undesired installation.
To actually do the installation, run conda update --all
Upvotes: 2