It installed the package in my currently active environment instead of base, but the manual activation instructions below use the base environment ($CONDA_ROOT/etc...). So it seems like the command should be instead:
conda install -n base -c conda-forge conda-bash-completion
But also, that command also includes other packages from conda-forge that I don't want, like conda itself. So I believe it should be changed to specify the channel only for this package:
conda install -n base conda-forge::conda-bash-completion
I'm not an expert on conda though, so grain of salt and all that.
This installation didn't work for me:
It installed the package in my currently active environment instead of base, but the manual activation instructions below use the base environment (
$CONDA_ROOT/etc
...). So it seems like the command should be instead:But also, that command also includes other packages from
conda-forge
that I don't want, likeconda
itself. So I believe it should be changed to specify the channel only for this package:I'm not an expert on conda though, so grain of salt and all that.
I'm using Miniconda, if that's relevant.