From a1d63558536bdf80816ec62eb4ffa3fef66285d8 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Sun, 17 May 2026 19:26:06 +0200 Subject: [PATCH 1/2] Document homebrew and WSL in Quickstart --- quickstart/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quickstart/README.md b/quickstart/README.md index 78dc5f594..dccaaba4a 100644 --- a/quickstart/README.md +++ b/quickstart/README.md @@ -20,6 +20,8 @@ To get a feeling what preCICE does, watch a [short presentation](https://www.you ## Installation +For this tutorial, we will mainly need to install preCICE, OpenFOAM, and the OpenFOAM-preCICE adapter. In many parts of the preCICE documentation, we assume a Linux system (most commonly a recent Ubuntu LTS). If you are on Windows, [Ubuntu on Windows (WSL)](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6) works. If you are on macOS or a Linux distribution other than Ubuntu, then [Homebrew](https://precice.org/installation-packages.html#macos) is the way to go (both for preCICE and for [OpenFOAM](https://github.com/gerlero/homebrew-openfoam)). + 1. Get and install preCICE. For Ubuntu 24.04 (Noble Numbat), this is pretty easy: [download](https://github.com/precice/precice/releases/latest) and install our binary package by clicking on it or using the following commands: ```bash From b21469c6b82fa941a352b9f5ae6d3cb95d801939 Mon Sep 17 00:00:00 2001 From: Gerasimos Chourdakis Date: Sun, 17 May 2026 19:30:35 +0200 Subject: [PATCH 2/2] Quickstart: Update Ubuntu packages and bump preCICE version to v3.4.1 --- quickstart/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/quickstart/README.md b/quickstart/README.md index dccaaba4a..b3561e0a7 100644 --- a/quickstart/README.md +++ b/quickstart/README.md @@ -22,18 +22,19 @@ To get a feeling what preCICE does, watch a [short presentation](https://www.you For this tutorial, we will mainly need to install preCICE, OpenFOAM, and the OpenFOAM-preCICE adapter. In many parts of the preCICE documentation, we assume a Linux system (most commonly a recent Ubuntu LTS). If you are on Windows, [Ubuntu on Windows (WSL)](https://www.microsoft.com/en-us/p/ubuntu/9nblggh4msv6) works. If you are on macOS or a Linux distribution other than Ubuntu, then [Homebrew](https://precice.org/installation-packages.html#macos) is the way to go (both for preCICE and for [OpenFOAM](https://github.com/gerlero/homebrew-openfoam)). -1. Get and install preCICE. For Ubuntu 24.04 (Noble Numbat), this is pretty easy: [download](https://github.com/precice/precice/releases/latest) and install our binary package by clicking on it or using the following commands: +1. Get and install preCICE. For Ubuntu 26.04 (Resolute Raccoon), this is pretty easy: [download](https://github.com/precice/precice/releases/latest) and install our binary package by clicking on it or using the following commands: ```bash - wget https://github.com/precice/precice/releases/download/v3.3.1/libprecice3_3.3.1_noble.deb - sudo apt install ./libprecice3_3.3.1_noble.deb + wget https://github.com/precice/precice/releases/download/v3.4.1/libprecice3_3.4.1_resolute.deb + sudo apt install ./libprecice3_3.4.1_resolute.deb ``` | OS | Package | | --- | --- | - | Ubuntu 22.04 Jammy Jellyfish | [`libprecice3_3.3.1_jammy.deb`](https://github.com/precice/precice/releases/download/v3.3.1/libprecice3_3.3.1_jammy.deb) | - | Ubuntu 24.04 Noble Numbat | [`libprecice3_3.3.1_noble.deb`](https://github.com/precice/precice/releases/download/v3.3.1/libprecice3_3.3.1_noble.deb) | - | Debian 13 Trixie | [`libprecice3_3.3.1_trixie.deb`](https://github.com/precice/precice/releases/download/v3.3.1/libprecice3_3.3.1_trixie.deb) | + | Ubuntu 22.04 Jammy Jellyfish | [`libprecice3_3.4.1_jammy.deb`](https://github.com/precice/precice/releases/download/v3.4.1/libprecice3_3.4.1_jammy.deb) | + | Ubuntu 24.04 Noble Numbat | [`libprecice3_3.4.1_noble.deb`](https://github.com/precice/precice/releases/download/v3.4.1/libprecice3_3.4.1_noble.deb) | + | Ubuntu 26.04 Resolute Raccoon | [`libprecice3_3.4.1_resolute.deb`](https://github.com/precice/precice/releases/download/v3.4.1/libprecice3_3.4.1_resolute.deb) | + | Debian 13 Trixie | [`libprecice3_3.4.1_trixie.deb`](https://github.com/precice/precice/releases/download/v3.4.1/libprecice3_3.4.1_trixie.deb) | | Something else | See an [overview of options](https://precice.org/installation-overview.html) | Facing any problems? [Ask for help](https://precice.org/community-channels.html).