You will need to adjust your conda configuration to proceed. Use `conda config --show channels` to view your configuration's current state, and use `conda config --show-sources` to view config file locations. code example

Example: UnavailableInvalidChannel error in conda

#-------------UnavailableInvalidChannel error in conda--------------#
conda config --get channels
#----------Output---------#
--add channels 'defaults'   # lowest priority
--add channels 'https://pypi.org/project/librosa/'
--add channels 'intel'   # highest priority
#-------------------------#
# 'https://pypi.org/project/librosa/' is InvalidChannel causing error.
conda config --remove channels 'https://pypi.org/project/librosa/'