When installing a package from a non-defaults
channel, we usually do:
conda install -c conda-forge packagename
This has the side effect of adding conda-forge
as a higher priority channel then defaults
Alternatively, we can now use
conda install conda-forge::packagename
to only have the specified packagename to be installed from conda-forge
, or one could do: