How To Install libjgoodies-animation-java on Debian 10
Introduction
In this tutorial we learn how to install libjgoodies-animation-java
on Debian 10.
What is libjgoodies-animation-java
libjgoodies-animation-java is:
The JGoodies Animation framework enables you to produce sophisticated time-based real-time animations in Java. It has been designed for a seemless, flexible and powerful integration with Java, ease-of-use and a small library size.
There are three methods to install libjgoodies-animation-java
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 libjgoodies-animation-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libjgoodies-animation-java
using apt-get
by running the following command:
sudo apt-get -y install libjgoodies-animation-java
Install libjgoodies-animation-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libjgoodies-animation-java
using apt
by running the following command:
sudo apt -y install libjgoodies-animation-java
Install libjgoodies-animation-java 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 libjgoodies-animation-java
using aptitude
by running the following command:
sudo aptitude -y install libjgoodies-animation-java
How To Uninstall libjgoodies-animation-java on Debian 10
To uninstall only the libjgoodies-animation-java
package we can use the following command:
sudo apt-get remove libjgoodies-animation-java
Uninstall libjgoodies-animation-java And Its Dependencies
To uninstall libjgoodies-animation-java
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libjgoodies-animation-java
Remove libjgoodies-animation-java Configurations and Data
To remove libjgoodies-animation-java
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libjgoodies-animation-java
Remove libjgoodies-animation-java configuration, data, and all of its dependencies
We can use the following command to remove libjgoodies-animation-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjgoodies-animation-java
Dependencies
libjgoodies-animation-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libjgoodies-animation-java
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.