Ubuntu中使用Anaconda安装一些包出现:Connection broken: OSError("(104, \'ECONNRESET\')")

('Connection broken: OSError("(104, \'ECONNRESET\')")', OSError("(104, 'ECONNRESET')"))

在这里插入图片描述
发生场景:在Ubuntu,使用Anaconda安装一些包。
这种问题大概就是下载国外的包什么的网速太慢了,下载失败。

解决办法:
1.一般我都是挂 V批N 解决,不知道今天啥问题不行,可能是我用的日本服务器的问题吧。
2.还是老老实实用国内的镜像算了。
这里我用的清华大学的一个镜像开源下的:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/
在终端直接复制粘贴:
(这里我用的conda install安装命令)

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 --set show_channel_urls yes

再使用conda install安装你想装的包吧

你可能感兴趣的:(Django)