pip安装python库时使用国内镜像资源加速下载过程

Posted wuliytTaotao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pip安装python库时使用国内镜像资源加速下载过程相关的知识,希望对你有一定的参考价值。

pip默认安装包是从网站https://pypi.org/simple下载,我们可以将其改成国内的镜像网站,加速下载过程,下面以安装numpy库为例:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy

下载其它库时,将numpy改成需要的库名即可。(使用pip、pip2 or pip3根据指向的python版本即可确定。)

 

在终端中输入pip install -help可以发现参数"-i"的作用:

Package Index Options:
  -i, --index-url <url>       Base URL of Python Package Index (default
                              https://pypi.org/simple). This should point to a
                              repository compliant with PEP 503 (the simple
                              repository API) or a local directory laid out in
                              the same format.

 

以上是关于pip安装python库时使用国内镜像资源加速下载过程的主要内容,如果未能解决你的问题,请参考以下文章

Python pip安装第三方库的国内镜像

Python pip 国内换源的几个办法

重要加速镜像及资源

使用国内镜像源来加速python pypi包的安装

【Python】 设置 pip 默认下载路径(含国内镜像源)

用国内镜像源pip加速安装模块