2 Copyright (C) The Arvados Authors. All rights reserved.
4 SPDX-License-Identifier: CC-BY-SA-3.0
6 modules_to_enable and packages_to_install may be space-separated strings
9 {%- if modules_to_enable != nil %}
10 {% include 'notebox_begin_warning' %}
12 Arvados tools require newer language runtimes than the default versions included with these distributions. These instructions will **upgrade language runtimes for the entire system**. Check that won't interfere with any existing software before you proceed.
14 {% include 'notebox_end' %}
17 Set up the Arvados package repository
18 {%- if packages_to_install == nil %}
19 {%- elsif packages_to_install contains " " %} and install the packages
20 {%- else %} and install @{{ packages_to_install }}@
21 {%- endif %} by running these commands:
24 <pre><code># <span class="userinput">tee /etc/yum.repos.d/arvados.repo >/dev/null <<'EOF'
27 baseurl=http://rpm.arvados.org/CentOS/$releasever/os/$basearch/
29 gpgkey=http://rpm.arvados.org/CentOS/RPM-GPG-KEY-arvados
31 {%- if modules_to_enable != nil %}
32 # <span class="userinput">dnf module enable {{ modules_to_enable }}</span>
34 {%- if packages_to_install != nil -%}
35 # <span class="userinput">dnf install {{ packages_to_install }}</span>