python Coppre输出2个pip冻结命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Coppre输出2个pip冻结命令相关的知识,希望对你有一定的参考价值。

def compare_deps(freeze1, freeze2):
    freeze1 = freeze1.splitlines()
    freeze2 = freeze2.splitlines()
    print('arg1 contains {} items, arg2 contains {} items'.format(len(freeze1), len(freeze2)))
    for item1 in freeze1:
        if '==' not in item1:
            continue
        name1, ver1 = item1.split('==')
        for item2 in freeze2:
            if '==' not in item2:
                continue
            name2, ver2 = item2.split('==')
            if name1 == name2 and ver1 != ver2:
                print('Mismatch {} {}'.format(item1, item2))

以上是关于python Coppre输出2个pip冻结命令的主要内容,如果未能解决你的问题,请参考以下文章

python包管理工具pip download详解

点冻结与点列表

为啥 pip 冻结列表“pkg-resources==0.0.0”?

为啥 pip 冻结列表“pkg-resources==0.0.0”?

Pip 安装挂起

为什么pip安装包不会出现在pip冻结中?