How To Install liblingua-en-nameparse-perl on Kali Linux
Introduction
In this tutorial we learn how to install liblingua-en-nameparse-perl on Kali Linux.
What is liblingua-en-nameparse-perl
liblingua-en-nameparse-perl is:
Lingua::EN::NameParse takes as input a person or persons name in free format text such as,
Mr AB & M/s CD MacNay-Smith MR J.L. D’ANGELO Estate Of The Late Lieutenant Colonel AB Van Der Heiden
and attempts to parse it. If successful, the name is broken down into components and useful functions can be performed such as:
converting upper or lower case values to name case (Mr AB MacNay ) creating a personalised greeting or salutation (Dear Mr MacNay ) extracting the names individual components (Mr,AB,MacNay ) determining the type of format the name is in (Mr_A_Smith )
There are three methods to install liblingua-en-nameparse-perl 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 liblingua-en-nameparse-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install liblingua-en-nameparse-perl using apt-get by running the following command:
sudo apt-get -y install liblingua-en-nameparse-perlInstall liblingua-en-nameparse-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install liblingua-en-nameparse-perl using apt by running the following command:
sudo apt -y install liblingua-en-nameparse-perlInstall liblingua-en-nameparse-perl 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 liblingua-en-nameparse-perl using aptitude by running the following command:
sudo aptitude -y install liblingua-en-nameparse-perlHow To Uninstall liblingua-en-nameparse-perl on Kali Linux
To uninstall only the liblingua-en-nameparse-perl package we can use the following command:
sudo apt-get remove liblingua-en-nameparse-perlUninstall liblingua-en-nameparse-perl And Its Dependencies
To uninstall liblingua-en-nameparse-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove liblingua-en-nameparse-perlRemove liblingua-en-nameparse-perl Configurations and Data
To remove liblingua-en-nameparse-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge liblingua-en-nameparse-perlRemove liblingua-en-nameparse-perl configuration, data, and all of its dependencies
We can use the following command to remove liblingua-en-nameparse-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge liblingua-en-nameparse-perlDependencies
liblingua-en-nameparse-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install liblingua-en-nameparse-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.