创建虚拟环境提示SSLError错误
创建虚拟环境提示错误after connection broken by SSLError(SSLError(1, [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1006))): /pkgs/main/win-64/repodata.json.zst如下图解决方法1、删除原来的镜像conda config --remove-key channels2、更换清华源conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --set show_channel_urls yes3、打开文件.condarc可以进行搜索找到修改内容删除defaultsssl_verify改为 false4、运行conda create -n ai_agent python3.10 -y5、成功解决问题