首页 > 代码库 > 安装pynlpir时的问题

安装pynlpir时的问题

用pip install pynlpir 安装时出错

错误:Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by ‘ReadTimeoutError("HTTPSConnectionPool(host=‘pypi.python.org‘, port=443): Read timed out. (read timeout=15)",)‘: /simple/pynlpir/

估计时连不上源中的目的网址

 

让后翻到了一篇教程:

/******************************************************************************/

异常信息:

Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by ‘ReadTimeoutError(“HTTPSConnectionPool(host=’pypi.Python.org’, port=443): Read timed out. (read timeout=15)”,)’: /simple/scipy/

通过pip安装scipy、scikit-learn等库的时候,可能会报上面的错误,国内通过FQ手段,是可能解决该问题的。下面给个不用FQ的办法。 

使用国内镜像下载python库的办法。

以下载pandas为例,终端输入命令(前提是python正确安装):

 

[plain] view plain copy print?
  1. pip  install --index https://pypi.mirrors.ustc.edu.cn/simple/ pandas  

注:--index后面也可以换成别的镜像,比如http://mirrors.sohu.com/python/

/*********************************************************************/

再然后用pip install --index https://pypi.mirrors.ustc.edu.cn/simple/ pynlpir

下载成功

 

安装pynlpir时的问题