-
I know this question hast been asked a lot and you are probably annoyed by it. But what is the best way of keeping Miniforge up to date? The command I read mostly nowadays is:
But there is also:
Earlier there was:
Besides that there is also the
I always do a fresh reinstall after uninstalling once in a while, but that's always a little time consuming since I also have to do all the config stuff. This is of course doable, but it would be nice, if there was one official way of keeping conda up to date. Also for this I have some questions:
I also feel it would be great, if the one official way would be mentioned in the docs. Thanks for elaborating :). |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
conda and mamba are not 100% equivalent. Sometimes there are slight differences, but for
sometimes there are bugs in mamba that cause
You really only need the installer the very first time. Once conda is installed, you can simply use
Not accumulating packages accidentally.
I do:
I think we could add
to our instructions in the PRs welcome to add them to the docs. |
Beta Was this translation helpful? Give feedback.
conda and mamba are not 100% equivalent. Sometimes there are slight differences, but for
update
andinstall
in 2024, they should be mostly equivalent. conda vs mamba is a little bit like chasing the latest tooling. It used to be that conda was nearly necessary to handle the packaging metadata from conda-forge, but today, with libmamba-solver, conda should be just as usable as mamba. The problem is that if you try to update an environment with a REALLY OLD conda you might not have libmamba-sovler installed.sometimes the…