How To Install libbiblio-endnotestyle-perl on Ubuntu 18.04

In this tutorial we learn how to install libbiblio-endnotestyle-perl on Ubuntu 18.04. libbiblio-endnotestyle-perl is Perl module to format bibliographic references using Endnote-like templates

Introduction

In this tutorial we learn how to install libbiblio-endnotestyle-perl on Ubuntu 18.04.

What is libbiblio-endnotestyle-perl

libbiblio-endnotestyle-perl is:

Biblio::EndnoteStyle provides a way of formatting bibliographic references using style templates similar to those used by the popular reference management software Endnote (http://www.endnote.com/). The API is embarrassingly simple: a formatter object is made using the class’s constructor, the new() method; format() may then be repeatedly called on this object, using the same or different templates.

(The sole purpose of the object is to cache compiled templates so that multiple format() invocations are more efficient than they would otherwise be. Apart from that, the API might just as well have been a single function.)

There are three methods to install libbiblio-endnotestyle-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libbiblio-endnotestyle-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 libbiblio-endnotestyle-perl using apt-get by running the following command:

sudo apt-get -y install libbiblio-endnotestyle-perl

Install libbiblio-endnotestyle-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libbiblio-endnotestyle-perl

Install libbiblio-endnotestyle-perl 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 libbiblio-endnotestyle-perl using aptitude by running the following command:

sudo aptitude -y install libbiblio-endnotestyle-perl

How To Uninstall libbiblio-endnotestyle-perl on Ubuntu 18.04

To uninstall only the libbiblio-endnotestyle-perl package we can use the following command:

sudo apt-get remove libbiblio-endnotestyle-perl

Uninstall libbiblio-endnotestyle-perl And Its Dependencies

To uninstall libbiblio-endnotestyle-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libbiblio-endnotestyle-perl

Remove libbiblio-endnotestyle-perl Configurations and Data

To remove libbiblio-endnotestyle-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libbiblio-endnotestyle-perl

Remove libbiblio-endnotestyle-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libbiblio-endnotestyle-perl

References

Summary

In this tutorial we learn how to install libbiblio-endnotestyle-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.