win10Anaconda 安装虚拟环境出现SSLError解决方案

Anaconda的下载链接
https://www.anaconda.com/distribution/
可以点击下载完成后直接安装到默认的目录或者指定的目录。

安装完成后配置环境变量:
安装路径:C:\ProgramData\Anaconda3\Scripts
将Anaconda的安装路径添加到Path中如下图所示,
win10Anaconda 安装虚拟环境出现SSLError解决方案_第1张图片
win10Anaconda 安装虚拟环境出现SSLError解决方案_第2张图片

window10可以通过
第一种方式:客户端图形化界面操作
win10Anaconda 安装虚拟环境出现SSLError解决方案_第3张图片
点击创建,创建新的环境,选择python的版本
win10Anaconda 安装虚拟环境出现SSLError解决方案_第4张图片
第二种:通过cmd命令行
使用命令的方式创建新的环境,创建环境的过程中会出现SSLError的问题,异常如下所示:

# 创建虚拟环境 -n指定名称  python=3.6指定安装软件版本
conda create -n test python=3.6
SSLError(MaxRetryError('HTTPSConnectionPool(host=\'repo.anaconda.com\', port=443): Max retries exceeded with url: /pkgs/main/win-64/current_repodata.json (Caused by SSLError("Can\'t connect to HTTPS URL because the SSL module is not available."))'))

解决方式:
找到conda的源配置文件C:\Users\Administrator
在这里插入图片描述
更换为清华源

channels:
  - https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
  - https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - defaults
show_channel_urls: true
ssl_verify: false

你可能感兴趣的:(python3,anaconda)