How To Install bauble on Debian 9
Introduction
In this tutorial we learn how to install bauble on Debian 9.
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 Debian 9. 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 Debian. 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 Debian 9
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 Debian 9, we can use the command below:
sudo apt-get -y autoremove bauble
Remove bauble Configurations and Data
To remove bauble configuration and data from Debian 9 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
Dependencies
bauble have the following dependencies:
- xdg-utils
- python-egenix-mxdatetime
- python-sqlalchemy
- python-lxml
- python-pyparsing
- python-gtk2
- librsvg2-common
- python-glade2
- python-gdata
- python-mako
- python-pysqlite2
- python
References
Summary
In this tutorial we learn how to install bauble package on Debian 9 using different package management tools: apt, apt-get and aptitude.