Python 安装文件一直出现retrying的问题

问题描述:

在python中安装文件gensim(语句:pip install gensim)时遇到如下问题:

Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError(, 'Connection to mirrors.aliyun.com timed out. (connect timeout=15)')': /pypi/simple/gensim/

这是因为我的pip文件下面的镜像源是阿里云,可以换成其他的镜像源,我试了以下几个:

(1) pip install -i https://pypi.tuna.tsinghua.edu.cn/simple gensim

(2) pip install -i https://pypi.douban.com/simple gensim

(3) pip install -i https://pypi.mirrors.ustc.edu.cn/simple gensim

发现第(3)个是有用的,其他两个都会产生以上的问题。


你可能感兴趣的:(Python)