CondaError: Downloaded bytes did not match Content-Length

在使用conda install的时候下载软件总出现

CondaError: Downloaded bytes did not match Content-Length

有两个解决方案:

一是延长conda 下载的timeout

conda config --set remote_read_timeout_secs 10000.0

二是直接下载软件,线下安装至conda

从conda的源下载好要安装的包,直接采用本地安装的方式。下载的url再出错的地方有提示:

url: https://repo.anaconda.com/pkgs/main/linux-64/cudnn-7.0.5-cuda8.0_0.tar.bz2
conda install --offline ./ cudnn-7.0.5-cuda8.0_0.tar.bz2

参考https://blog.csdn.net/sinat_36594453/article/details/89599174

你可能感兴趣的:(CondaError: Downloaded bytes did not match Content-Length)