diff --git a/docs/README.md b/docs/README.md index 9b792065..49e9c536 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,16 @@ The core module, which interfaces with preCICE, is called `precice-aste-run` and ### Dependencies -The C++ core module of ASTE uses similar dependencies as preCICE itself. In particular, ASTE requires a C++ compiler, CMake, MPI and Boost. Have a look at the [corresponding preCICE documentation](https://precice.org/installation-source-dependencies.html) for required versions and on how to install these dependencies if needed. In addition, ASTE relies on preCICE (version >= 3.0) and the VTK library (version >= 7) in order to handle mesh files. The VTK library can be installed using the package manager (`libvtk-dev`), e.g., on Ubuntu +The C++ core module of ASTE depends on a C++ compiler, `CMake`, `MPI`, `Boost`, `VTK` and `preCICE`. Many of these dependencies are similar to dependencies of preCICE itself. In particular, the C++ compiler, `CMake`, `MPI` and `Boost`. Have a look at the [corresponding preCICE documentation](https://precice.org/installation-source-dependencies.html) for required versions and on how to install these dependencies if needed. In addition, ASTE relies on `preCICE` (version >= 3.0) and the `VTK` library (version >= 7) to handle mesh files. + +Detailed installation instructions for the preCICE library are available in the preCICE [installation documentation](https://precice.org/installation-overview.html). On Ubuntu, e.g., [system packages](https://precice.org/installation-packages.html#ubuntu) are availble through [GitHub releases](https://github.com/precice/precice/releases) and can be installed through the package manager, e.g., + +```bash +wget https://github.com/precice/precice/releases/download//libprecice.deb +sudo apt install ./libprecice.deb +``` + +The VTK library can be installed using the package manager directly (`libvtk-dev`), e.g., on Ubuntu ```bash sudo apt install libvtk9-dev