How To Install libqt5webengine-data on Debian 10
Introduction
In this tutorial we learn how to install libqt5webengine-data
on Debian 10.
What is libqt5webengine-data
libqt5webengine-data is:
QtWebEngine provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application.
This package contains the arch independent parts of QtWebEngine libraries.
There are three methods to install libqt5webengine-data
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libqt5webengine-data Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libqt5webengine-data
using apt-get
by running the following command:
sudo apt-get -y install libqt5webengine-data
Install libqt5webengine-data Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libqt5webengine-data
using apt
by running the following command:
sudo apt -y install libqt5webengine-data
Install libqt5webengine-data 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 libqt5webengine-data
using aptitude
by running the following command:
sudo aptitude -y install libqt5webengine-data
How To Uninstall libqt5webengine-data on Debian 10
To uninstall only the libqt5webengine-data
package we can use the following command:
sudo apt-get remove libqt5webengine-data
Uninstall libqt5webengine-data And Its Dependencies
To uninstall libqt5webengine-data
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libqt5webengine-data
Remove libqt5webengine-data Configurations and Data
To remove libqt5webengine-data
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libqt5webengine-data
Remove libqt5webengine-data configuration, data, and all of its dependencies
We can use the following command to remove libqt5webengine-data
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libqt5webengine-data
Dependencies
libqt5webengine-data have the following dependencies:
References
Summary
In this tutorial we learn how to install libqt5webengine-data
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.