How To Install stx-btree-dev on Debian 9
Introduction
In this tutorial we learn how to install stx-btree-dev on Debian 9.
What is stx-btree-dev
stx-btree-dev is:
The STX B+ Tree package is a set of C++ template classes implementing a B+ tree key/data container in main memory. Designed to be drop-in replacements of the STL containers set, map, multiset and multimap and follow their interfaces very closely. By packing multiple value pairs into each node of the tree the B+ tree reduces heap fragmentation and utilizes cache-line effects better than the standard red-black binary tree. The classes contain extensive assertion and verification mechanisms to ensure the implementation’s correctness by testing the tree invariants. To illustrate the B+ tree’s structure a wxWidgets demo program is included in the stx-btree-demo package.
There are three methods to install stx-btree-dev 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 stx-btree-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install stx-btree-dev using apt-get by running the following command:
sudo apt-get -y install stx-btree-dev
Install stx-btree-dev Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install stx-btree-dev using apt by running the following command:
sudo apt -y install stx-btree-dev
Install stx-btree-dev 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 stx-btree-dev using aptitude by running the following command:
sudo aptitude -y install stx-btree-dev
How To Uninstall stx-btree-dev on Debian 9
To uninstall only the stx-btree-dev package we can use the following command:
sudo apt-get remove stx-btree-dev
Uninstall stx-btree-dev And Its Dependencies
To uninstall stx-btree-dev and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove stx-btree-dev
Remove stx-btree-dev Configurations and Data
To remove stx-btree-dev configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge stx-btree-dev
Remove stx-btree-dev configuration, data, and all of its dependencies
We can use the following command to remove stx-btree-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge stx-btree-dev
Dependencies
stx-btree-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install stx-btree-dev package on Debian 9 using different package management tools: apt, apt-get and aptitude.