How To Install tipa-doc on Kali Linux
Introduction
In this tutorial we learn how to install tipa-doc on Kali Linux.
What is tipa-doc
tipa-doc is:
TIPA is a system for processing IPA (International Phonetic Alphabet) symbols in LaTeX written by Fukui Rei. TIPA stands for either TeX IPA or Tokyo IPA and derived from the tsipa package, made in 1992 by Kobayashi Hajime, Fukui Rei and Shirakawa Shun.
This package contains the documentation for the TIPA fonts for LaTeX.
There are three methods to install tipa-doc on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install tipa-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install tipa-doc using apt-get by running the following command:
sudo apt-get -y install tipa-docInstall tipa-doc Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install tipa-doc using apt by running the following command:
sudo apt -y install tipa-docInstall tipa-doc Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install tipa-doc using aptitude by running the following command:
sudo aptitude -y install tipa-docHow To Uninstall tipa-doc on Kali Linux
To uninstall only the tipa-doc package we can use the following command:
sudo apt-get remove tipa-docUninstall tipa-doc And Its Dependencies
To uninstall tipa-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove tipa-docRemove tipa-doc Configurations and Data
To remove tipa-doc configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge tipa-docRemove tipa-doc configuration, data, and all of its dependencies
We can use the following command to remove tipa-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge tipa-docDependencies
tipa-doc have the following dependencies:
References
Summary
In this tutorial we learn how to install tipa-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.