removing a channel from aconda

Solutions on MaxInterview for removing a channel from aconda by the best coders in the world

showing results for - "removing a channel from aconda"
Aitana
29 Oct 2019
1conda config --get channels
2
3#-------Output-------------#
4--add channels 'defaults'   # lowest priority
5--add channels 'https://pypi.org/project/librosa/'
6--add channels 'intel'   # highest priority
7#--------------------------#
8
9conda config --remove channels 'https://pypi.org/project/librosa/'
10