Creating a Flatpak
Ship your app easily to users.
Last updated
Ship your app easily to users.
Last updated
We can also take care of distributing our PyQt application. Although the is probably the standard way to distribute a Python package, should be more user friendly for Linux users than using command line tools such as pip
.
Flatpaks are built locally using flatpak-builder
. The tool checks out the source code and any of its custom dependencies, then builds it against a runtime (a collection of libraries shared between flatpaks). Since we already took care of the source code, all we need is to write a single file, the flatpak manifest, which describes everything needed to build the package.
Create a new flatpak manifest file simplemdviewer/org.kde.simplemdviewer.json
:
This file reads that we use the markdown
module and the build info is provided by the python3-markdown.json
manifest file. We are going to create this manifest automatically using flatpak-pip-generator
.
The generator has a single dependency to run, requirements-parser
. After installing it in the virtual environment, the tool can be run:
You should see a new python3-markdown.json
inside simplemdviewer/
now.
Install org.kde.Sdk
and org.kde.Platform
, version 6.6, from Flathub:
To attempt a first build of the flatpak, run:
Tip You can add the flag `--install-deps-from flathub` to flatpak-builder to make it download the Sdk, Platform and Baseapp for you instead of installing them manually.
If you installed Flathub as a user repository, you will need to add the --user
flag to install the runtime. Otherwise you might see the error "Flatpak system operation Deploy not allowed for user".
Test the flatpak build:
Build a distributable nightly flatpak bundle:
Other improvements you can make to your application:
Consider making it an official [KDE Application]({{< ref "add-project" >}}), building [Flatpak nightlies using KDE infrastructure]({{< ref "docs/packaging/flatpak/publishing" >}}).
Happy hacking.
Download , and save it into the simplemdviewer/env/bin/
directory:
We are using the , which provides Qt dependencies like QtQuick and KDE frameworks like Kirigami, so you will need the Software Development Kit (Sdk) runtime to build the app locally, and the Platform runtime to run it. More than that, the KDE Runtime is based on the general , which provides Python. You can read more about runtimes in the .
We are using the , which contains an already built and ready-to-use PyQt we can quickly add on top of the KDE Runtime, so we need to install it as well.
For a PyQt Flatpak application, we are using the , which contains an already built and ready-to-use PyQt we can quickly add on top of the KDE Runtime, so we need to install it as well. Alternatively, you can use the , which provides a similar ready-to-use PySide6 environment.
Now we can either distribute the simplemdviewer.flatpak
directly to the users, or submit the application to a flatpak repository, like the most popular repository, . See the .
Signing the source archive with a .
Providing copyright and licensing information for each file with .
Learn more about building flatpak apps with our [Flatpak Tutorial]({{< ref "flatpak" >}}) and the .
Follow the to refine the presentation of your application on Flathub.