51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

pip.conf中添加多个索引包地址

默认在pio.conf中我们配置index-url参数来指定包下载的地址,如果想再指定一个地址就要使用extra-index-url了。

下面是个例子:
cat ~/.pip/pip.conf

|---|----------------------| | 1 | cat ~/.pip/pip.conf |


[global] timeout = 60 index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ extra-index-url = https://mirrors.aliyun.com/pypi/simple/

|---------|-----------------------------------------------------------------------------------------------------------------------------------------| | 1 2 3 4 | [global] timeout = 60 index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ extra-index-url = https://mirrors.aliyun.com/pypi/simple/ |

timeout:超时时间为60秒
--index-url:基本的包索引地址,默认从https://pypi.python.org/simple/获取
extra-index-url:除了--index-url之外,要使用的包索引地址,即如果从--index-url找不到所需要的包,将会从extra-index-url查找

附:

pip国内镜像地址

阿里云 http://mirrors.aliyun.com/pypi/simple/
豆瓣 https://pypi.doubanio.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
腾讯 https://mirrors.cloud.tencent.com/pypi/simple/

赞(0)
未经允许不得转载:工具盒子 » pip.conf中添加多个索引包地址