conda:whatconda更新和conda升级的区别?

conda:what's the difference between conda update and conda upgrade?

conda update --all

conda upgrade --all

我试过测试差异

似乎命令conda upgrade--all 刚刚更新到最新版本。

conda update --alll考虑兼容性。

那么真正的区别是什么

内置文档对此进行了解释

$ conda --help
usage: conda [-h] [-V] command ...

conda is a tool for managing and deploying applications, environments and packages.

Options:

positional arguments:
  command
    ...
    update       Updates conda packages to the latest compatible version.
    upgrade      Alias for conda update.

optional arguments:
  -h, --help     Show this help message and exit.
...

即没有区别; upgradeupdate.

的别名