How To Install flowblade on Debian 12
Introduction
In this tutorial we learn how to install flowblade
on Debian 12.
What is flowblade
flowblade is:
Flowblade Movie Editor is designed to provide a fast, precise and as-simple-as-possible editing experience.
Flowblade employs film style editing paradigm in which clips are usually automatically placed tightly after the previous clip - or between two existing clips - when they are inserted on the timeline. Edits are fine-tuned by trimming in and out points of clips, or by cutting and deleting parts of clips. Film style editing is faster for creating programs with mostly straight cuts and audio splits, but may be slower when programs contain complex composites unless correct work flow is followed.
There are three methods to install flowblade
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install flowblade Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install flowblade
using apt-get
by running the following command:
sudo apt-get -y install flowblade
Install flowblade Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install flowblade
using apt
by running the following command:
sudo apt -y install flowblade
Install flowblade Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install flowblade
using aptitude
by running the following command:
sudo aptitude -y install flowblade
How To Uninstall flowblade on Debian 12
To uninstall only the flowblade
package we can use the following command:
sudo apt-get remove flowblade
Uninstall flowblade And Its Dependencies
To uninstall flowblade
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove flowblade
Remove flowblade Configurations and Data
To remove flowblade
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge flowblade
Remove flowblade configuration, data, and all of its dependencies
We can use the following command to remove flowblade
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge flowblade
Dependencies
flowblade have the following dependencies:
- python3-cairo
- python3-numpy
- python3-dbus
- python3-pil
- python3-gi
- python3-gi-cairo
- gir1.2-glib-2.0
- gir1.2-gtk-3.0
- gir1.2-pango-1.0
- gir1.2-gdkpixbuf-2.0
- python3-mlt
- librsvg2-common
- frei0r-plugins
- swh-plugins
- gmic
- python3
References
Summary
In this tutorial we learn how to install flowblade
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.