PIP 批量更新改为清华这边的镜像更新

Posted kakaok

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PIP 批量更新改为清华这边的镜像更新相关的知识,希望对你有一定的参考价值。

之前pip批量更新的时候发现有些包无法更新,而且速度也特别慢,今天尝试了下清华的镜像,速度是真快

# coding=utf-8
import pip
from subprocess import call

for dist in pip.get_installed_distributions():
call("pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade " + dist.project_name, shell=True)

以上是关于PIP 批量更新改为清华这边的镜像更新的主要内容,如果未能解决你的问题,请参考以下文章

pip --upgrade批量更新过期的python库

pip 批量更新

oracle数据库如何用update批量更新某列数据中的字段

Azure DevOps 批量更新自定义字段

oracle数据库如何用update批量更新某列数据中的字段

conda/pip 为啥现在国内镜像不能用了