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.
15 * "Debian and Ubuntu":#debian
19 Packages are available for CentOS 7. To install them with yum, save this configuration block in @/etc/yum.repos.d/arvados.repo@:
24 baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
26 gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-curoverse
30 {% include 'install_redhat_key' %}
32 h3(#debian). Debian and Ubuntu
34 Packages are available for recent versions of Debian and Ubuntu.
36 First, register the Arvados signing key in apt's database:
38 {% include 'install_debian_key' %}
40 As root, add the Arvados package repository to your sources. This command depends on your OS vendor and version:
42 table(table table-bordered table-condensed).
43 |_. OS version|_. Command|
44 |Debian 10 ("buster")|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/ buster main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
45 |Debian 9 ("stretch")|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/ stretch main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
46 |Ubuntu 18.04 ("bionic")[1]|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/ bionic main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
47 |Ubuntu 16.04 ("xenial")[1]|<notextile><code><span class="userinput">echo "deb http://apt.arvados.org/ xenial main" | tee /etc/apt/sources.list.d/arvados.list</span></code></notextile>|
50 {% include 'notebox_begin' %}
52 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@.
54 {% include 'notebox_end' %}
56 Retrieve the package list:
59 <pre><code># <span class="userinput">apt-get update</span>