1、 2022-01-12 01:05:22 wed
众所周知,Python使用pip方法安装第三方包时,需要从 https://pypi.org/ 资源库中下载,但是会面临下载速度慢,甚至无法下载的尴尬。pip
提供了对 Python 包的查找、下载、安装、卸载的功能,是非常方便的 Python 包管理工具。但是,令人苦恼的是 pip 在国内的下载速度非常慢,
速度常常只有每秒几十 K,甚至才几 K,小点的包还好,还能等,更多的时候,则是下载软件丢失。
2、pip命令行一键设置国内源:
# trusted-host 此参数是为了避免麻烦,否则使用的时候可能会提示不受信任
#设置清华源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple #设置信任站点 pip config set install.trusted-host https://pypi.tuna.tsinghua.edu.cnView Code
3、设置效果查看
4、国内其它常用源
阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
5、临时使用:
#markdown 为想要安装的软件包名 pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple