python的虚拟环境无法安装,如何解决?

问题遇到的现象和发生背景

python的Anconda虚拟环境突然不能安装,总是安装失败

问题相关代码,请勿粘贴截图

conda create -n aiit2 python=3.8安装报错
A reportable application error has occurred. Conda has prepared the above report......

运行结果及报错内容

安装出错

我的解答思路和尝试过的方法
我想要达到的结果

安装成功

运行结果及报错内容

A reportable application error has occurred. Conda has prepared the 。。。。。。

要达到的结果

我之前也遇到这种问题,一般造成这种原因是因为资源都在外网,你换一下源应该就行了。
换源方法,百试不厌。
在 C:\Users\17331 中找到 .condarc这个文件,你的可能不是17331,这个17331是自己取的名字,右键打开,以文本方式打开,然后把下面这段代码粘贴进去更换之前的代码。
channels:

http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64
http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/win-64
http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
http://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/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/pkgs/main/
ssl_verify: true
show_channel_urls: true

mark