赞
踩
使用pip安装库时,下载软件包特别慢,是因为下载会默认请求python官网的镜像源。而官网的镜像部署在国外,网络条件不好时,会下载特别慢。为了解决这个痛点,我们可以把下载镜像源设置为国内的镜像源,直接从国内下载,比如清华镜像源、豆瓣镜像源等等。
https://pypi.tuna.tsinghua.edu.cn/simple
http://mirrors.aliyun.com/pypi/simple
http://pypi.douban.com/simple/
https://pypi.mirrors.ustc.edu.cn/simple/
http://pypi.hustunique.com/
http://pypi.sdutlinux.org/
http://mirrors.163.com
每次安装库的时候,安装命令中添加镜像即可。
pip install 库名 -i 镜像地址
比如使用清华源安装pygame库:
pip install pygame -i https://pypi.tuna.tsinghua.edu.cn/simple
- [global]
- index-url = https://pypi.tuna.tsinghua.edu.cn/simple
- [install]
- trusted-host = pypi.tuna.tsinghua.edu.cn
可根据自己的实际需求,修改使用的镜像地址。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。