How To Install libjs-material-design-lite on Debian 12
Introduction
In this tutorial we learn how to install libjs-material-design-lite
on Debian 12.
What is libjs-material-design-lite
libjs-material-design-lite is:
Material Design Lite (MDL) lets you add a Material Design look and feel to your static content websites. It doesn’t rely on any JavaScript frameworks or libraries. Optimized for cross-device use, gracefully degrades in older browsers, and offers an experience that is accessible from the get-go.
There are three methods to install libjs-material-design-lite
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 libjs-material-design-lite Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libjs-material-design-lite
using apt-get
by running the following command:
sudo apt-get -y install libjs-material-design-lite
Install libjs-material-design-lite Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libjs-material-design-lite
using apt
by running the following command:
sudo apt -y install libjs-material-design-lite
Install libjs-material-design-lite 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 libjs-material-design-lite
using aptitude
by running the following command:
sudo aptitude -y install libjs-material-design-lite
How To Uninstall libjs-material-design-lite on Debian 12
To uninstall only the libjs-material-design-lite
package we can use the following command:
sudo apt-get remove libjs-material-design-lite
Uninstall libjs-material-design-lite And Its Dependencies
To uninstall libjs-material-design-lite
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove libjs-material-design-lite
Remove libjs-material-design-lite Configurations and Data
To remove libjs-material-design-lite
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge libjs-material-design-lite
Remove libjs-material-design-lite configuration, data, and all of its dependencies
We can use the following command to remove libjs-material-design-lite
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjs-material-design-lite
Dependencies
libjs-material-design-lite have the following dependencies:
References
Summary
In this tutorial we learn how to install libjs-material-design-lite
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.