How To Install libgeo-gpx-perl on Kali Linux

In this tutorial we learn how to install libgeo-gpx-perl on Kali Linux. libgeo-gpx-perl is Perl module for creating and parsing GPX files

Introduction

In this tutorial we learn how to install libgeo-gpx-perl on Kali Linux.

What is libgeo-gpx-perl

libgeo-gpx-perl is:

The original goal of Geo::Gpx was to produce GPX/XML files which were parseable by both GPX Spinner and EasyGPS. As of version 0.13 it has been extended to support general parsing and generation of GPX data. Both GPX 1.0 and 1.1 are supported.

There are three methods to install libgeo-gpx-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 libgeo-gpx-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libgeo-gpx-perl using apt-get by running the following command:

sudo apt-get -y install libgeo-gpx-perl

Install libgeo-gpx-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libgeo-gpx-perl using apt by running the following command:

sudo apt -y install libgeo-gpx-perl

Install libgeo-gpx-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 update

After updating apt database, We can install libgeo-gpx-perl using aptitude by running the following command:

sudo aptitude -y install libgeo-gpx-perl

How To Uninstall libgeo-gpx-perl on Kali Linux

To uninstall only the libgeo-gpx-perl package we can use the following command:

sudo apt-get remove libgeo-gpx-perl

Uninstall libgeo-gpx-perl And Its Dependencies

To uninstall libgeo-gpx-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libgeo-gpx-perl

Remove libgeo-gpx-perl Configurations and Data

To remove libgeo-gpx-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libgeo-gpx-perl

Remove libgeo-gpx-perl configuration, data, and all of its dependencies

We can use the following command to remove libgeo-gpx-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libgeo-gpx-perl

Dependencies

libgeo-gpx-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libgeo-gpx-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.