conda upgrade all packages
0
Contents
conda is an alternative package management tool bundled with the Anaconda python distribution. In some ways conda is a replacement for pip.
Here is how you upgrade all conda installed python packages with one command.
conda update --all
# update all packages unprompted
conda update --all -y
# list packages that can be updated
conda search --outdated