Skip to content

Commit

Permalink
Unzip and curl are a requirement to use the installation script (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSchaumont authored Feb 1, 2025
1 parent 7cbc89a commit 271b947
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installation/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down

0 comments on commit 271b947

Please sign in to comment.