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 * "Red Hat, AlmaLinux, and Rocky Linux":#redhat
15 * "Debian and Ubuntu":#debian
18 <a id="centos7" style="display: none;"></a>
21 h3(#redhat). Red Hat, AlmaLinux, and Rocky Linux
23 Packages are available for the following Red Hat-based distributions:
29 To install them with dnf, save this configuration block in @/etc/yum.repos.d/arvados.repo@:
34 baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
36 gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-arvados
40 {% include 'gpg_key_fingerprint' %}
42 h3(#debian). Debian and Ubuntu
44 Packages are available for recent versions of Debian and Ubuntu.
46 First, register the Arvados signing key in apt's database:
48 {% include 'install_debian_key' %}
50 {% include 'gpg_key_fingerprint' %}
52 Then set up the package source by running this command:
55 <pre><code># <span class="userinput">tee /etc/apt/sources.list.d/arvados.sources >/dev/null <<EOF
57 URIs: https://apt.arvados.org/$(lsb_release -cs)
58 Suites: $(lsb_release -cs)
60 Signed-by: /etc/apt/keyrings/arvados.asc
65 {% include 'notebox_begin' %}
67 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@.
69 {% include 'notebox_end' %}
71 Retrieve the package list:
74 <pre><code># <span class="userinput">apt update</span>