如何使用 python apt API 删除 debian 包 [英] How do I remove debian packages using python apt API

查看:22
本文介绍了如何使用 python apt API 删除 debian 包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在 Linux mint 上尝试这个.我一直在研究如何使用 python-apt API 删除包.下面的代码是我能想到的所有代码,但是当我运行它时没有任何反应.我现在正在尝试删除一个包,但稍后我想从文本文件中删除一个包列表.我尝试使用 这篇文章中的答案 并重新设计它以删除但我的逻辑不起作用.请给我一些意见.

I'm was trying this on Linux mint. I have been researching on how to remove packages using the python-apt API. The piece of code below was all I could come up with but nothing happens when I run it. I am trying to remove a single package right now but later I would like to remove a list of packages from a text file. I tried to use the answer found in this post and re-engineered it for removing but my logic does not work. Please give me some input.

#!/usr/bin/env python
# aptuninnstall.py

import apt
import sys


def remove():
    pkg_name = "chromium-browser"
    cache = apt.cache.Cache()
    cache.update()
    pkg = cache[pkg_name]
    pkg.marked_delete
    resolver = apt.cache.ProblemResolver(cache)
    for pkg in cache.get_changes():
        if pkg.is_installed:
            resolver.remove(pkg)
        else:
            print (pkg_name + " not installed so not removed")
    try:
        cache.commit()
    except Exception, arg:
        print >> sys.stderr, "Sorry, package removal failed [{err}]".format(err=str(arg))

remove()

推荐答案

在阅读了文档并尝试了不同的方法后,我提出了以下代码,或多或少地解决了我的问题.如果有人有更好的方法,请发布.我还想学很多

After reading the docs and trying different things, I more or less fixed my problem by coming up with the code below. If someone has a better way, please post. I still want to learn a lot

#!/usr/bin/env python
# aptremove.py

import apt
import apt_pkg
import sys


def remove():
    pkg_name = "chromium-browser"
    cache = apt.cache.Cache()
    cache.open(None)
    pkg = cache[pkg_name]
    cache.update()
    pkg.mark_delete(True, purge=True)
    resolver = apt.cache.ProblemResolver(cache)

    if pkg.is_installed is False:
        print (pkg_name + " not installed so not removed")
    else:
        for pkg in cache.get_changes():
            if pkg.mark_delete:
                print pkg_name + " is installed and will be removed"
                print " %d package(s) will be removed" % cache.delete_count
                resolver.remove(pkg)
    try:
        cache.commit()
        cache.close()
    except Exception, arg:
        print >> sys.stderr, "Sorry, package removal failed [{err}]".format(err=str(arg))

remove()

为了从文件中获取包列表,我暂时采用了这种方法.

In order to get the package list from a file, I took this approach for now.

#!/usr/bin/env python
# aptremove.py

import apt
import apt_pkg
import sys


def remove():
    cache = apt.cache.Cache()
    cache.open(None)
    resolver = apt.cache.ProblemResolver(cache)

    with open("apps-to-remove") as input:
        for pkg_name in input:
            pkg = cache[pkg_name.strip()]
            pkg.mark_delete(True, purge=True)
        input.close()
        cache.update()

    if pkg.is_installed is False:
        print (pkg_name + " not installed so not removed")
    else:
        for pkg in cache.get_changes():
            if pkg.mark_delete:
                print pkg_name + " is installed and will be removed"
                print " %d package(s) will be removed" % cache.delete_count
                resolver.remove(pkg)
    try:
        cache.commit()
        cache.close()
        print "starting"
    except Exception, arg:
        print >> sys.stderr, "Sorry, package removal failed [{err}]".format(err=str(arg))

remove()

这篇关于如何使用 python apt API 删除 debian 包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆