pip安裝python庫時使用國內映象資源加速下載過程

wuliytTaotao發表於2018-08-10

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.

 

相關文章