conda update
command to install the latest version of a package that remains compatible with the other packages in your environment.
Run conda update --help
to see a list of available options.
--no-update-deps
flag.
--no-update-deps
flag only prevents conda from updating other packages in the environment. It does not prevent conda from installing new packages required by updated dependencies.--override-channels
flag to ignore the channels configured in your environment and .condarc
file, and the --channel
flag to provide the channel you want to use.
conda update --all
might not update all the packages in a given environment to their latest versions. If the latest version of a package is incompatible with other packages installed in the environment, conda will only update that package to the latest compatible version.