在cmd中輸入conda create --name torchreid python=3.7.4后出現Solving environment: failed
解決方法如下
添加 Anaconda Python 免費倉庫:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
檢查Anaconda的config:查看channel個數以及格式,顯然覺得有一個是有問題的:
conda config --show
或者可以使用 下面命令換回默認源:
conda config --remove-key channels
