在 Python 2.7 上使用 Python apt API?我还不知道该怎么做。
答案1
您必须使用 Python 3,这应该不是问题,因为当前的 Ubuntu 版本(即将停产的 12.04 除外)都默认安装了 Python 3,并且正在转向默认仅使用 Python3。使用aptsources.sourceslist.SourcesList
目的:
#! /usr/bin/python3
import aptsources.sourceslist as sl
sources = sl.SourcesList()
sources.add('deb', 'mirror://mirrors.ubuntu.com/mirrors.txt', 'xenial', ['main'])
sources.save()