remove a channel conda code example
Example: removing a channel from aconda
conda config --get channels
#-------Output-------------#
--add channels 'defaults' # lowest priority
--add channels 'https://pypi.org/project/librosa/'
--add channels 'intel' # highest priority
#--------------------------#
conda config --remove channels 'https://pypi.org/project/librosa/'