# 批量更新pip安装的第三方库2.py
import os
import time
程序开始运行,并计时
starting = time.time()
获取cmd返回的信息
print("正在获取待更新的pip第三方库列表...")
outdataed = os.popen('pip list --outdated')
text = outdataed.read()
创建更新日志
ls = []
print("正在创建更新日志...")
path = 'update all.txt'
f = open(path,'w+', encoding='utf-8')
f.write(text)
print("更新日志文件创建成功!")
f.seek(0)
从更新日志里提取第三方库的名称
for line in f.readlines():
a = line.split(' ')
ls.append(a[0])
ls = ls[2:]
f.close()
利用遍历循环更新第三方库
c = 0
for i in ls:
c += 1
n = len(ls)
command = 'pip install --upgrade '+i
print("开始更新第{0}个第三方库, 共{1}个...".format(c, n))
os.system(command)
更新完毕并退出
ending = time.time()
fin = ending - starting
print("更新完毕!共用时{0:.2f}秒。".format(fin))