answerSeeker Asked: 2017-04-17 06:22:37 +0800 CST2017-04-17 06:22:37 +0800 CST 2017-04-17 06:22:37 +0800 CST 如何使用 python apt API 在 Ubuntu 上添加 PPA? 772 在 python 2.7 上使用 Python apt API?我一直无法找到如何做到这一点。 16.04 1 个回答 Voted Best Answer muru 2017-04-17T19:29:27+08:002017-04-17T19:29:27+08:00 您必须使用 Python 3,这应该不是问题,因为当前的 Ubuntu 版本(除了即将 EOL 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()
您必须使用 Python 3,这应该不是问题,因为当前的 Ubuntu 版本(除了即将 EOL 12.04 之外)都默认安装了 Python 3,并且默认情况下只使用 Python3。使用
aptsources.sourceslist.SourcesList
对象: