From 271b947b1be539371c3613165f9028fe960c8582 Mon Sep 17 00:00:00 2001 From: Dries Schaumont <5946712+DriesSchaumont@users.noreply.github.com> Date: Sat, 1 Feb 2025 07:44:54 +0100 Subject: [PATCH] Unzip and curl are a requirement to use the installation script (#102) --- installation/index.qmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/installation/index.qmd b/installation/index.qmd index f3ae8adf..e46b0291 100644 --- a/installation/index.qmd +++ b/installation/index.qmd @@ -35,21 +35,21 @@ You can run the following command to check if you have Java installed: java -version ``` -To install Java, we encourage to use your distribution's package manager; +To install Java, we encourage to use your distribution's package manager; `unzip` and `curl` are also required if you want to use the installation script. ```bash # for Debian/Ubuntu sudo apt-get update -sudo apt-get install openjdk-17-jdk +sudo apt-get install openjdk-17-jdk unzip curl ``` ```bash # for RHEL/Fedora -sudo yum install java-17-openjdk-devel +sudo yum install java-17-openjdk-devel unzip curl ``` ```bash # for Arch -sudo pacman -Syy jdk17-openjdk +sudo pacman -Syy jdk17-openjdk unzip curl ``` To get the most out of Viash, you'll also need to install [Docker](https://docs.docker.com/engine/install/) and [Nextflow](https://www.nextflow.io/).