LinuxCommandLibrary

conda-update

package updater

TLDR

Update all packages

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

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.

CAVEATS

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

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community