conda-update

package updater

TLDR

Update all packages
$ conda update --all
Update specific package
$ conda update [package_name]
Update conda itself
$ conda update conda
Update in specific environment
$ conda update -n [env_name] [package_name]
Update without confirmation
$ conda update -y [package_name]

SYNOPSIS

conda update [options] [packages...]

DESCRIPTION

conda update updates packages to the latest compatible versions. It respects existing package constraints and may update dependencies as needed.

PARAMETERS

--all

Update all installed packages.
-n, --name name
Update in named environment.
-c, --channel channel
Additional channel to search.
-y, --yes
Don't ask for confirmation.
--update-deps
Update dependencies.

CONFIGURATION

~/.condarc

User-level conda configuration for channels, package settings, and solver options.
/opt/conda/.condarc
System-wide conda configuration.

INSTALL

sudo dnf install conda
nix profile install nixpkgs#conda

CAVEATS

--all may fail if there are conflicting package requirements. In such cases, update packages individually.

SEE ALSO

conda(1), conda-install(1), conda-list(1)

RESOURCES

Source code · Homepage · Documentation