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: add QtWebkit tutorial #557

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
17 changes: 15 additions & 2 deletions content/resources/installation-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,16 +338,29 @@ On certain distributions, you may also need to install the packages `xdg-desktop

See the [Flathub files here](https://github.com/flathub/org.qgis.qgis) and [report issues here](https://github.com/flathub/org.qgis.qgis/issues).

### Extension Support
### Show runtime version
If you need the following additions, you want to know which runtime QGIS is using:

```
flatpak info org.qgis.qgis --show-runtime
```

### Extension support
If you need to install additional Python modules, because they are needed by a plugin, you can install the module with (here installing the `scipy` module):

```
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/VERSION not installed" then also do:
# NOTE: you will likely 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
```

### HTML rendering
If you want to use HTML, for example in map layouts, `QtWebkit` is needed. You can install it from the flatpak command line interface

```
flatpak install app/io.qt.qtwebkit.BaseApp/x86_64/VERSION
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe worth mentioning too that it is considered insecure and thus not provided by default....


## Fedora

Expand Down
Loading