本文主要是介绍pip使用阿里云镜像更新包,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#!/usr/bin/env python# -*- coding: utf-8 -*-import pip# python3.7 新版本需要需要导入下面的包from pip._internal.utils.misc import get_installed_distributionsfrom subprocess import callfrom time import sleep#更新pipcall("python -m pip install -i https://mirrors.aliyun.com/pypi/simple --upgrade pip")for dist in get_installed_distributions():# 执行后,pip默认为Python3版本# 双版本下需要更新Python2版本的包,使用py2运行,并将pip修改成pip2#call("pip install -i https://mirrors.ustc.edu.cn/pypi/web/simple/ --upgrade " + dist.project_name, shell=True)call("pip install -i https://mirrors.aliyun.com/pypi/simple --upgrade " + dist.project_name, shell=True)
复制以上代码,存为update.py文件。
然后在命令行运行 python update.py 实现自动更新
这篇关于pip使用阿里云镜像更新包的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!