如何在 18.04.1 LTS 上从 bionic-updates universe 安装 clang-format-7?

如何在 18.04.1 LTS 上从 bionic-updates universe 安装 clang-format-7?

我使用的是 Ubuntu 18.04.1 LTS。我想安装软件包:clang-format-7。

我无法以通常的方式做到这一点。以下是sudo apt install clang-format-7(以下sudo apt update)的输出:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package clang-format-7

输出如下apt search clang-format

Sorting... Done
Full Text Search... Done
arcanist-clang-format-linter/bionic,bionic 0.git20161021-2 all
  clang-format linter for Arcanist

clang-format/bionic-updates 1:6.0-41~exp5~ubuntu1 amd64
  Tool to format C/C++/Obj-C code

clang-format-3.9/bionic 1:3.9.1-19ubuntu1 amd64
  Tool to format C/C++/Obj-C code

clang-format-4.0/bionic 1:4.0.1-10 amd64
  Tool to format C/C++/Obj-C code

clang-format-5.0/bionic 1:5.0.1-4 amd64
  Tool to format C/C++/Obj-C code

clang-format-6.0/bionic 1:6.0-1ubuntu2 amd64
  Tool to format C/C++/Obj-C code

它没有找到版本 7。

我的Updates设置如下: 截图在这里

最后,输出如下cat /etc/apt/sources.list | grep bionic-updates

deb http://fr.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-updates universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ bionic-updates universe
deb http://fr.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ bionic-updates multiverse

鉴于这bionic-updates universe是在来源中,apt 不应该能够找到该包吗?

或者,我知道有一些 PPA 可以让我获得它(即https://apt.llvm.org/),但我更愿意解决这个问题并从 Canonical 的 repos 中获取它。

相关内容