FLATPAK DEB
Not possible

Convert FLATPAK to DEB

Can you convert FLATPAK to DEB?
QUICK ANSWER
Is it possible to convert FLATPAK to DEB?
No - not a direct conversion.

There is no tool that turns a .flatpak bundle into a working .deb. A Flatpak ships its own bundled runtime and expects the Flatpak sandbox, while a .deb installs into the system and pulls dependencies from apt, so the realistic path is to get the app's source and build a native .deb (or just install the app from Flathub instead).

No direct path
Also to DEB: APPIMAGE · IPK · RPM

On this page

Tested on macOS, Windows & Linux
Last verified Sep 2026

More free converters

HEIC, PNG, WEBP, MP3 and more - every tool here is free.

Open the toolbox

Why convert FLATPAK to DEB?

People look for .flatpak to .deb because they want the app in their system package manager instead of the Flatpak sandbox. The two formats are architecturally opposite: a Flatpak is self-contained and isolated, a Debian package integrates with the host and shares system libraries, so you rebuild rather than convert.

How to convert FLATPAK to DEB

Build a .deb from the app's source OPEN-SOURCE

Get the upstream source, then package it natively with dpkg-buildpackage -us -uc after adding a debian/ directory, or use checkinstall make install to wrap a build into a .deb.

Look for an official .deb FREE

Check the project's releases page or its apt repository; many apps that ship a Flatpak also publish a real .deb you can install with sudo apt install ./package.deb.

About these formats

Quality & what to watch

  • Extracting files from the Flatpak and stuffing them in a .deb produces a broken package: the binaries expect the Flatpak runtime and /app paths, not the host filesystem.
  • A rebuilt .deb uses system libraries, so behavior and versions can differ from the sandboxed Flatpak.
  • There is no alien-style automatic converter for Flatpak the way there is between .deb and .rpm.

Frequently asked questions

Can `alien` convert a flatpak to deb?
No. alien converts between .deb, .rpm, .tgz and .slp, but it does not handle Flatpak bundles.
Why not just extract the flatpak and repackage it?
The extracted files depend on the Flatpak runtime and sandbox paths, so a .deb built from them will not run on the host system.
What is the easiest alternative?
Keep the Flatpak and install it with flatpak install, or find an official .deb from the developer.
Is there any automated Flatpak-to-deb tool?
No maintained tool does this; you must rebuild the software from source as a native Debian package.