The miniforge installer is a relatively new, community-led, minimal conda installer that (as it says in its readme) "can be directly compared to Miniconda, with the added feature that conda-forge is the default channel".
It is unclear what is different between miniforge and Miniconda, or what the miniforge use case is.
If miniforge is the same as Miniconda except it just uses the conda-forge
channel by default, why create a whole different installer - why not just use miniconda and add conda-forge
as the first channel to use in ~/.condarc
?
If miniforge is different from Miniconda, what is different about the two?
conda config --add channels conda-forge; conda update --all
to switch the installed Python to be a conda-forge compiled one. – Giguere