How To Install tegaki-zinnia-japanese on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 412 words
Introduction
In this tutorial we learn how to install tegaki-zinnia-japanese on Ubuntu.
What is tegaki-zinnia-japanese
tegaki-zinnia-japanese is:
Zinnia is a simple, customizable and portable online hand recognition system based on Support Vector Machines. Zinnia simply receives user pen strokes as a sequence of coordinate data and outputs n-best characters sorted by SVM confidence. To keep portability, Zinnia doesn’t have any rendering functionality. In addition to recognition, Zinnia provides training module that allows us to create any hand-written recognition systems with low-cost.
This package provide a data model for Zinnia. With this model, Zinnia can recognize Japanese character.
This data model is derived from tomoe project: http://tomoe.sourceforge.jp
There are three methods to install tegaki-zinnia-japanese on Ubuntu. 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-zinnia-japanese 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-zinnia-japanese using apt-get by running the following command:
sudo apt-get -y install tegaki-zinnia-japanese
Install tegaki-zinnia-japanese Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install tegaki-zinnia-japanese using apt by running the following command:
sudo apt -y install tegaki-zinnia-japanese
Install tegaki-zinnia-japanese 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 Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install tegaki-zinnia-japanese using aptitude by running the following command:
sudo aptitude -y install tegaki-zinnia-japanese
How To Uninstall tegaki-zinnia-japanese on Ubuntu
To uninstall only the tegaki-zinnia-japanese package we can use the following command:
sudo apt-get remove tegaki-zinnia-japanese
Uninstall tegaki-zinnia-japanese And Its Dependencies
To uninstall tegaki-zinnia-japanese and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove tegaki-zinnia-japanese
Remove tegaki-zinnia-japanese Configurations and Data
To remove tegaki-zinnia-japanese configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge tegaki-zinnia-japanese
Remove tegaki-zinnia-japanese configuration, data, and all of its dependencies
We can use the following command to remove tegaki-zinnia-japanese configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tegaki-zinnia-japanese
Dependencies
tegaki-zinnia-japanese have the following dependencies:
References
Summary
In this tutorial we learn how to install tegaki-zinnia-japanese package on Ubuntu using different package management tools: apt, apt-get and aptitude.