--- layout: default navsection: installguide title: Arvados package repositories ... {% comment %} Copyright (C) The Arvados Authors. All rights reserved. SPDX-License-Identifier: CC-BY-SA-3.0 {% endcomment %} On any host where you install Arvados software, you'll need to add the Arvados package repository. They're available for several popular distributions. * "AlmaLinux, CentOS, RHEL, and Rocky Linux":#redhat * "Debian and Ubuntu":#debian h3(#redhat). AlmaLinux, CentOS, RHEL, and Rocky Linux Packages are available for the following Red Hat-based distributions: * AlmaLinux 8 * CentOS 8 * RHEL 8 * Rocky Linux 8 To install them with dnf, save this configuration block in @/etc/yum.repos.d/arvados.repo@:
[arvados]
name=Arvados
baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
gpgcheck=1
gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-arvados
{% include 'gpg_key_fingerprint' %} h3(#debian). Debian and Ubuntu Packages are available for recent versions of Debian and Ubuntu. First, register the Arvados signing key in apt's database: {% include 'install_debian_key' %} {% include 'gpg_key_fingerprint' %} Then set up the package source by running this command:
# tee /etc/apt/sources.list.d/arvados.sources >/dev/null <<EOF
Types: deb
URIs: https://apt.arvados.org/$(lsb_release -cs)
Suites: $(lsb_release -cs)
Components: main
Signed-by: /etc/apt/keyrings/arvados.asc
EOF
{% include 'notebox_begin' %} 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@. {% include 'notebox_end' %} Retrieve the package list:
# apt update