[Environment configuration] Collecting package metadata (current_repodata.json): failed problem solving

When using conda to create a new environment, the problem of Collecting package metadata (current_repodata.json): failed appeared. I tried many methods but failed to solve it. Finally, I accidentally solved it through the boss's blog.

Big brother blog link: [Environment configuration] Collecting package metadata (current_repodata.json): failed problem solving_Working hard for Yuan's Blog-CSDN Blog

First find the .condarc file under C:/User/Mars> and open it with Notepad.
If not found: just add a mirror source
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
1
and then copy all the contents into the .condarc file, It can be solved.
channels:
  - defaults
show_channel_urls: true
channel_alias: http://mirrors.tuna.tsinghua.edu.cn/anaconda
default_channels:
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
  - http:/ /mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
  - http://mirrors.tuna.tsinghua.edu.cn /anaconda/pkgs/pro
  - http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
  conda-forge: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  msys2: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  bioconda: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  menpo: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  pytorch: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
  simpleitk: http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
 

おすすめ

転載: blog.csdn.net/great_yzl/article/details/129000257