commands.sh

conda update

all

Update packages within a conda environment, including conda itself.

More info →

Options (2)

--allboolean

Update all packages in the current environment

Example: conda update {{[--all|--update-all]}}
-n, --nameboolean

Update conda itself in the base environment

Example: conda update {{[-n|--name]}} base conda

Examples (5)

Update all packages in the current environment

conda update [--all|--update-all]

Update a specific package in the current environment

conda update package_name

Update conda itself in the base environment

conda update [-n|--name] base conda

Update packages while ignoring pinned packages

conda update --no-pin

Update packages in offline mode

conda update --offline
made by @shridhargupta | data from tldr-pages