How To Install simfqt on CentOS 7

In this tutorial we learn how to install simfqt on CentOS 7. simfqt is C++ Simulated Fare Quote System Library

Introduction

In this tutorial we learn how to install simfqt on CentOS 7.

What is simfqt

simfqt aims at providing a clean API and a simple implementation, as a C++ library, of a Travel-oriented fare engine. It corresponds to the simulated version of the real-world Fare Quote or pricing system. simfqt makes an extensive use of existing open-source libraries for increased functionality, speed and accuracy. In particular the Boost (C++ Standard Extensions used. Install the simfqt package if you need a library of basic C++ objects for Airline Pricing and Fare Quoting (FQ), mainly for simulation purpose.

We can use yum or dnf to install simfqt on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install simfqt.

Install simfqt on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install simfqt using yum by running the following command:

sudo yum -y install simfqt

Install simfqt on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install simfqt using dnf by running the following command:

sudo dnf -y install simfqt

How To Uninstall simfqt on CentOS 7

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

sudo dnf remove simfqt

References

Summary

In this tutorial we learn how to install simfqt on CentOS 7 using yum and dnf.