How To Install stdair on AlmaLinux 8
Introduction
In this tutorial we learn how to install stdair
on AlmaLinux 8.
What is stdair
stdair aims at providing a clean API, and the corresponding C++ implementation, for the basis of Airline IT and travel distribution Business Object Model (BOM), that is, to be used by several other open source projects, such as AirRAC, RMOL, AirInv, AvlCal, AirSched, SimFQT, SimLFS, SimCRS, TravelCCM, SEvMgr, TraDemGen, DSim, OpenTREP, etc. Install the stdair package if you need a library of basic C++ objects for Airline IT (e.g., schedule management, inventory, revenue management, revenue accounting), travel distribution, demand generation and customer choice modeling, mainly for simulation purpose.
We can use yum
or dnf
to install stdair
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install stdair.
Install stdair on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install stdair
using dnf
by running the following command:
sudo dnf -y install stdair
Install stdair on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install stdair
using yum
by running the following command:
sudo yum -y install stdair
How To Uninstall stdair on AlmaLinux 8
To uninstall only the stdair
package we can use the following command:
sudo dnf remove stdair
References
Summary
In this tutorial we learn how to install stdair
on AlmaLinux 8 using yum and dnf.