操作系统:Ubuntu 18.04
我正在看Ubuntu 文档关于如何安装auto-apt
。但是,当我运行
apt-cache show auto-apt
我明白了
N: Unable to locate package auto-apt
E: No packages found
发生什么事了auto-apt
?
编辑。 这不是帖子的重复apt 搜索:限制为精确匹配下面我发布了我在终端中获得的一些其他结果。
$ apt search ^auto-apt$
Sorting... Done
Full Text Search... Done
$ sudo apt-get install auto-apt
[sudo] password for username:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package auto-apt
答案1
auto-apt 似乎在 2014 年(即 5 年前)最后一次更新到 0.3.24 版本。此外,截至目前,xenial (16.04) 似乎是唯一在其存储库信息中仍包含 auto-apt 的受支持版本。在 bionic (18.04) 中,您仍然可以下载 deb 包并安装 auto-apt。它的依赖关系是可以满足的。要安装,请运行
wget https://mirrors.edge.kernel.org/ubuntu/pool/universe/a/auto-apt/auto-apt_0.3.24_amd64.deb
sudo dpkg -i auto-apt_0.3.24_amd64.deb
sudo apt install -f
顺便说一句,由于 Ubuntu 是基于 Debian 的操作系统,并且所有软件包都是从 Debian 本身导入的,因此 Debian 似乎也计划放弃自动 apt,因为它在 Stretch 或 Buster 上不可用。