How To Install bauble on Ubuntu 18.04

In this tutorial we learn how to install bauble on Ubuntu 18.04. bauble is biodiversity collection manager software application

Introduction

In this tutorial we learn how to install bauble on Ubuntu 18.04.

What is bauble

bauble is:

Bauble is a software application to help you manage a collection of botanical specimens. It is intended to be used by botanic gardens, herbaria, arboreta, etc. to manage their collection information. It is a open, free, cross-platform alternative to BG-Base and similar software.

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

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

sudo apt-get update

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

sudo apt-get -y install bauble

Install bauble Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install bauble using apt by running the following command:

sudo apt -y install bauble

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

sudo aptitude -y install bauble

How To Uninstall bauble on Ubuntu 18.04

To uninstall only the bauble package we can use the following command:

sudo apt-get remove bauble

Uninstall bauble And Its Dependencies

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

sudo apt-get -y autoremove bauble

Remove bauble Configurations and Data

To remove bauble configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge bauble

Remove bauble configuration, data, and all of its dependencies

We can use the following command to remove bauble configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge bauble

References

Summary

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