conda update --all
conda upgrade --all
我试着测试这个区别
似乎命令conda upgrade--all只是更新到最后一个版本。
conda update --alll考虑兼容性。
所以真正的区别是什么
发布于 2021-03-20 20:12:04
内置文档解释了这一点。
$ 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.
...也就是说,没有区别;upgrade是update的别名。
https://stackoverflow.com/questions/66719343
复制相似问题