How To Install glibmm24.x86_64 on Amazon Linux 2

In this tutorial we learn how to install glibmm24.x86_64 in Amazon Linux 2. glibmm24.x86_64 is C++ interface for the GLib library

Introduction

In this tutorial we learn how to install glibmm24.x86_64 on Amazon Linux 2.

What is glibmm24.x86_64

glibmm is the official C++ interface for the popular cross-platform library GLib. It provides non-UI API that is not available in standard C++ and makes it possible for gtkmm to wrap GObject-based APIs.

We can use yum to install glibmm24.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install glibmm24.x86_64.

Install glibmm24.x86_64 on Amazon Linux 2 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install glibmm24.x86_64 using yum by running the following command:

sudo yum -y install glibmm24.x86_64

How To Uninstall glibmm24.x86_64 on Amazon Linux 2

To uninstall only the glibmm24.x86_64 package we can use the following command:

sudo yum remove glibmm24.x86_64

glibmm24.x86_64 Package Contents on Amazon Linux 2

/usr/lib64/libgiomm-2.4.so.1
/usr/lib64/libgiomm-2.4.so.1.3.0
/usr/lib64/libglibmm-2.4.so.1
/usr/lib64/libglibmm-2.4.so.1.3.0
/usr/lib64/libglibmm_generate_extra_defs-2.4.so.1
/usr/lib64/libglibmm_generate_extra_defs-2.4.so.1.3.0
/usr/share/doc/glibmm24-2.56.0
/usr/share/doc/glibmm24-2.56.0/AUTHORS
/usr/share/doc/glibmm24-2.56.0/NEWS
/usr/share/doc/glibmm24-2.56.0/README
/usr/share/licenses/glibmm24-2.56.0
/usr/share/licenses/glibmm24-2.56.0/COPYING

References

Summary

In this tutorial we learn how to install glibmm24.x86_64 on Amazon Linux 2 using yum.