How To Install tagainijisho on Debian 10
Introduction
In this tutorial we learn how to install tagainijisho
on Debian 10.
What is tagainijisho
tagainijisho is:
Tagaini Jisho is a free, open-source Japanese dictionary and kanji lookup tool.
It aims at becoming your Japanese study assistant by allowing you to quickly search for entries and mark those that you wish to study, along with tags and personal notes. It also let you train entries you are studying and follows your progression in remembering them. Finally, it makes it easy to review entries you did not remember by listing them on screen or printing them on a small booklet.
Tagaini Jisho also features complete stroke order animations for more than 6000 kanji, flashcard-like training, production of paper material for studying, and extended search options for vocabulary and kanjis including part-of-speech and JLPT levels.
There are three methods to install tagainijisho
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 tagainijisho Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tagainijisho
using apt-get
by running the following command:
sudo apt-get -y install tagainijisho
Install tagainijisho Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tagainijisho
using apt
by running the following command:
sudo apt -y install tagainijisho
Install tagainijisho 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 tagainijisho
using aptitude
by running the following command:
sudo aptitude -y install tagainijisho
How To Uninstall tagainijisho on Debian 10
To uninstall only the tagainijisho
package we can use the following command:
sudo apt-get remove tagainijisho
Uninstall tagainijisho And Its Dependencies
To uninstall tagainijisho
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove tagainijisho
Remove tagainijisho Configurations and Data
To remove tagainijisho
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge tagainijisho
Remove tagainijisho configuration, data, and all of its dependencies
We can use the following command to remove tagainijisho
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tagainijisho
Dependencies
tagainijisho have the following dependencies:
References
Summary
In this tutorial we learn how to install tagainijisho
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.