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

feat: additional Flatpak notes #531

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions content/resources/installation-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,20 @@ For bugs and other behaviour, read comments here : https://aur.archlinux.org/pac

## Flatpak

There is for QGIS Stable and LTS available, maintained by the Flathub community.
{{< rich-box-start icon="💡" layoutClass="tips">}}
{{< rich-content-start themeClass="coloring-1" >}}
##### Note
Flatpak is a universal package format for all Linux distributions. Packages are isolated from the system, which can have security and stability benefits. For example, you can use the latest QGIS version on a stable distribution.

Flatpaks are installed for all users by default, but can also be installed for a single user only with the `--user` argument.

Only users with `sudo` permission can change systemwide Flatpak apps and repositories, but all users can update them. This can be useful on managed machines.
{{< rich-content-end >}}
{{< rich-box-end >}}

For general Linux Flatpak install notes, see [the Flathub website](https://flatpak.org/setup).
There is a Flatpak for QGIS Stable and LTR available, maintained by the Flathub community.

For general install notes, see [the Flathub website](https://flatpak.org/setup).

[Here you can find QGIS on Flathub](https://flathub.org/apps/details/org.qgis.qgis).

Expand All @@ -500,13 +511,15 @@ To install:
flatpak install flathub org.qgis.qgis
```

You will be prompted for the version of QGIS you want to use.

The app should appear in your app launcher, alternatively use this command:

```
flatpak run org.qgis.qgis
```

To update your flatpak QGIS:
To update your Flatpak apps, including QGIS:

```
flatpak update
Expand All @@ -522,8 +535,8 @@ If you need to install additional Python modules, because they are needed by a p
```
flatpak run --devel --command=pip3 org.qgis.qgis install scipy --user

# NOTE: it is possible you get an error like: "error: runtime/org.kde.Sdk/x86_64/5.15-23.08 not installed" then also do:
flatpak install runtime/org.kde.Sdk/x86_64/5.15-23.08
# NOTE: it is possible you get an error like: "error: runtime/org.kde.Sdk/x86_64/VERSION not installed" then also do:
flatpak install runtime/org.kde.Sdk/x86_64/VERSION
```

## Spack
Expand Down