conda 遇到的问题

1、conda install -c conda-forge 时,遇到的报错:
An unexpected error has occurred. Conda has prepared the above report.

image.png

查了很久,也有挺多人遇到类似的错误,试了下别人的解决方案:

conda config --remove channels conda-forge
conda config --add channels conda-forge

发现无效。
后来想之前清理过conda中 pkgs 的缓存,有可能是缓存清除了,但索引没删,找不到导致报错。于是运行以下命令,删除conda中的缓存索引:

conda clean -i

果然问题解决了。

......

你可能感兴趣的:(conda 遇到的问题)