(已解决)An HTTP error occurred when trying to retrieve this URL.

用conda创建虚拟环境时遇到这个报错,需要重新配置channels

conda config --remove-key channels

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/

conda config --set show_channel_urls yes 

在C:\Users\用户名\AppData\Roaming中找到pip文件夹

记事本打开配置文件,并修改:

[global]
index-url = http://mirrors.aliyun.com/pypi/simple 
trusted-host = mirrors.aliyun.com

保存退出后,重新输入conda create -n xxx python==3.8

成功进入创建的流程

你可能感兴趣的:(python,pip,conda)