Anaconda中安装包下载超时

 转自:

Anaconda中Python安装包下载超时 - 代码先锋网

 

前言

在使用conda安装tensorflow,pytorch,opencv等包时,可能时由于包大小比较大,网络连接等原因导致安装包下载超时,会报出以下错误:

CondaError: Downloaded bytes did not match Content-Length

下面整理了一些处理办法,对使用其它包管理工具下载安装包超时也有借鉴意义。

一、切换网络

使用网速更稳定,更快的网络连接

二、挂VPN

部分包不能安装,是由于地址不再国内,没办法访问。

三、增大timeout

远端读取时间超时,可以设置remote_read_timeout_secs参数,使用下面第一条命令先显示目前该参数值,默认为60.0s,也就是一分钟。第二条命令设置该参数为600.0.

conda config --show remote_read_timeout_secs

conda config --set remote_read_timeout_secs 600.0

四、设置其他镜像源

添加速度更快的镜像源,如清华镜像源、中科大镜像源,官网上有相关说明。以添加清华镜像源为例:

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/conda-forge/

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

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

五、本地安装

先从conda源下载好需要安装的软件包,然后使用离线安装,下载的url再出错的地方有提示。

conda install --offline your_software_package_path

你可能感兴趣的:(python,linux,开发语言)