How To Install tegaki-train on Debian 10
Introduction
In this tutorial we learn how to install tegaki-train
on Debian 10.
What is tegaki-train
tegaki-train is:
Tegaki is an ongoing project which aims to develop a free and open-source modern implementation of handwriting recognition software, that is suitable for both the desktop and mobile devices, and that is designed from the ground up to work well with Chinese and Japanese.
This package provide a program to train tegaki with your own handwriting.
There are three methods to install tegaki-train
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 tegaki-train Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install tegaki-train
using apt-get
by running the following command:
sudo apt-get -y install tegaki-train
Install tegaki-train Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install tegaki-train
using apt
by running the following command:
sudo apt -y install tegaki-train
Install tegaki-train 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 tegaki-train
using aptitude
by running the following command:
sudo aptitude -y install tegaki-train
How To Uninstall tegaki-train on Debian 10
To uninstall only the tegaki-train
package we can use the following command:
sudo apt-get remove tegaki-train
Uninstall tegaki-train And Its Dependencies
To uninstall tegaki-train
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove tegaki-train
Remove tegaki-train Configurations and Data
To remove tegaki-train
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge tegaki-train
Remove tegaki-train configuration, data, and all of its dependencies
We can use the following command to remove tegaki-train
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tegaki-train
Dependencies
tegaki-train have the following dependencies:
References
Summary
In this tutorial we learn how to install tegaki-train
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.