How To Install compat-libf2c-34 on CentOS 7

In this tutorial we learn how to install compat-libf2c-34 on CentOS 7. compat-libf2c-34 is Fortran 77 compatibility runtime

Introduction

In this tutorial we learn how to install compat-libf2c-34 on CentOS 7.

What is compat-libf2c-34

This package contains Fortran 77 shared library which is needed to run Fortran 77 dynamically linked programs built by g77 3.4.x This package contains Fortran 77 shared library which is needed to run Fortran 77 dynamically linked programs built by g77 3.4.x

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

Install compat-libf2c-34 on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install compat-libf2c-34 using yum by running the following command:

sudo yum -y install compat-libf2c-34

Install compat-libf2c-34 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 compat-libf2c-34 using dnf by running the following command:

sudo dnf -y install compat-libf2c-34

How To Uninstall compat-libf2c-34 on CentOS 7

To uninstall only the compat-libf2c-34 package we can use the following command:

sudo dnf remove compat-libf2c-34

References

Summary

In this tutorial we learn how to install compat-libf2c-34 on CentOS 7 using yum and dnf.