Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Add ubuntu 22.04 build instructions #7689

Merged
merged 2 commits into from Apr 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions Docs/developer_guide/build_instructions/linux.md
Expand Up @@ -69,6 +69,16 @@ and is not compatible with the current development version of Slicer.
For more details, see the Slicer [CMakeLists.txt](https://github.com/Slicer/Slicer/blob/98c092edb8f5a274277d2e486a4f7e584f58605e/CMakeLists.txt#L3-L5) file.
:::

### Ubuntu 22.04 (Jammy Jellyfish)

Install the development tools and the support libraries:

```console
sudo apt update && sudo apt install git build-essential \
cmake cmake-curses-gui cmake-qt-gui \
qtbase5-dev qt5-qmake libqt5x11extras5-dev qtmultimedia5-dev libqt5svg5-dev qtwebengine5-dev libqt5xmlpatterns5-dev qttools5-dev qtbase5-private-dev
```

### Ubuntu 21.10 (Impish Indri)

Install the development tools and the support libraries:
Expand Down