如何将python x.x更新为python x.x以保留所有包



我是python 3.8用户。因此,为了保持更新,我想将我的python 3.8更新到3.9。但是我在python 3.8中安装了大量的软件包。有没有什么方法可以保留这些包并将python 3.8更新到3.9?

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

相关内容

  • 没有找到相关文章

最新更新