3 navsection: installguide
4 title: Arvados package repositories
7 Copyright (C) The Arvados Authors. All rights reserved.
9 SPDX-License-Identifier: CC-BY-SA-3.0
12 On any host where you install Arvados software, you'll need to add the Arvados package repository. They're available for several popular distributions.
14 * "AlmaLinux, CentOS, RHEL, and Rocky Linux":#redhat
15 * "Debian and Ubuntu":#debian
18 <a id="centos7" style="display: none;"></a>
21 h3(#redhat). AlmaLinux, CentOS, RHEL, and Rocky Linux
23 Packages are available for the following Red Hat-based distributions:
31 To install them with dnf or yum, save this configuration block in @/etc/yum.repos.d/arvados.repo@:
36 baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
38 gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-arvados
42 {% include 'gpg_key_fingerprint' %}
44 h3(#debian). Debian and Ubuntu
46 Packages are available for recent versions of Debian and Ubuntu.
48 First, register the Arvados signing key in apt's database:
50 {% include 'install_debian_key' %}
52 {% include 'gpg_key_fingerprint' %}
54 As root, add the Arvados package repository to your sources. This command depends on your OS vendor and version:
56 table(table table-bordered table-condensed).
57 |_. OS version|_. Command|
58 |Debian 11 ("bullseye")|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/bullseye bullseye main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
59 |Debian 10 ("buster")|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/buster buster main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
60 |Ubuntu 20.04 ("focal")[1]|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/focal focal main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
61 |Ubuntu 18.04 ("bionic")[1]|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/bionic bionic main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
64 {% include 'notebox_begin' %}
66 fn1. Arvados packages for Ubuntu may depend on third-party packages in Ubuntu's "universe" repository. If you're installing on Ubuntu, make sure you have the universe sources uncommented in @/etc/apt/sources.list@.
68 {% include 'notebox_end' %}
70 Retrieve the package list:
73 <pre><code># <span class="userinput">apt-get update</span>