在python开发中,经常需要使用到各种各样的库。pip又是我们常用的安装工具。但是国外的源下载速度实在太慢,经常导致超时。
对于这种情况我们可以修改pip的下载源为国内源。这样就可以大幅度提升下载速度。
推荐几个不错的国内镜像:
阿里云:https://mirrors.aliyun.com/pypi/simple/
豆瓣:https://pypi.douban.com/simple/
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
如何修改源?
1、临时更换镜像源
可以通过如下方式。
pip3 install 库名 -i 镜像地址1
这样的方式来安装。
如 我要安装 numpy 库 并使用 豆瓣 的镜像源
pip3 install numpy -i https://pypi.douban.com/simple/1
从下载的日志来看,源地址以成功修改成豆瓣的地址
E:\....\>pip3 install numpy -i https://pypi.douban.com/simple/Looking in indexes: https://pypi.douban.com/simple/Collecting numpy Downloading https://pypi.doubanio.com/packages/07/46/656c25b39fc152ea525eef14b641993624a6325a8ae815b200de57cff0bc/numpy-1.16.4-cp37-cp37m-win32.whl (10.0MB) 100% |████████████████████████████████| 10.0MB 2.9MB/s Installing collected packages: numpy Successfully installed numpy-1.16.41234567
如果你是用pip安装模块最多也就是40-50KB/s,如果你是国内的镜像源安装模块,都是几兆每秒,速度提上上百倍一点都不夸张!
一次配置,永久使用
Windows环境。
打开我的电脑,在地址栏中输入 %APPDATA% 按回车跳转到目标目录。在目录下创建一个pip文件,再其内部创建一个pip.ini 文件。输入以下信息。以豆瓣为例
[global]timeout = 6000 index-url = https://pypi.douban.com/simple/trusted-host = pypi.douban.com1234
如图所示
测试,发现修改之后直接输入pip3 install 库名。直接会从豆瓣的镜像源进行下载。
E:\....>pip3 install numpy Looking in indexes: https://pypi.douban.com/simple/Collecting numpy Using cached https://pypi.doubanio.com/packages/07/46/656c25b39fc152ea525eef14b641993624a6325a8ae815b200de57cff0bc/numpy-1.16.4-cp37-cp37m-win32.whl Installing collected packages: numpy Successfully installed numpy-1.16.4123456
Linux 或者Mac环境:
在 ~/.pip/pip.conf 这个目录(没有自己创建一个)将上面的配置信息,进行修改保存即可。
转载(嗨学编程):https://blog.csdn.net/fei347795790/article/details/102915608?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase
暂无数据