How To Install grace on CentOS 7

In this tutorial we learn how to install grace on CentOS 7. grace is Numerical Data Processing and Visualization Tool

Introduction

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

What is grace

Grace is a Motif application for two-dimensional data visualization. Grace can transform the data using free equations, FFT, cross- and auto-correlation, differences, integrals, histograms, and much more. The generated figures are of high quality. Grace is a very convenient tool for data inspection, data transformation, and for making figures for publications.

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

Install grace on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install grace

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

sudo dnf -y install grace

How To Uninstall grace on CentOS 7

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

sudo dnf remove grace

References

Summary

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