python 如何PIP批量升级所有旧的python包

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 如何PIP批量升级所有旧的python包相关的知识,希望对你有一定的参考价值。

import pip
from subprocess import call

for dist in pip.get_installed_distributions():
  call("pip install --upgrade " + dist.project_name, shell=True)

以上是关于python 如何PIP批量升级所有旧的python包的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 pip 升级所有 Python 包

如何将python2的代码升级到python3

Python: 使用pip升级所有包

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

Python的pip安装失败后解决方法

Python的pip安装失败后解决方法