How To Install isl-devel on CentOS 8

In this tutorial we learn how to install isl-devel on CentOS 8. isl-devel is Development for building integer point manipulation library

Introduction

In this tutorial we learn how to install isl-devel on CentOS 8.

What is isl-devel

isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, computing the lexicographic minimum using parametric integer programming, coalescing and parametric vertex enumeration. It also includes an ILP solver based on generalized basis reduction, transitive closures on maps (which may encode infinite graphs), dependence analysis and bounds on piecewise step-polynomials. isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, computing the lexicographic minimum using parametric integer programming, coalescing and parametric vertex enumeration. It also includes an ILP solver based on generalized basis reduction, transitive closures on maps (which may encode infinite graphs), dependence analysis and bounds on piecewise step-polynomials.

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

Install isl-devel on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install isl-devel using yum by running the following command:

sudo yum -y install isl-devel

Install isl-devel on CentOS 8 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 isl-devel using dnf by running the following command:

sudo dnf -y install isl-devel

How To Uninstall isl-devel on CentOS 8

To uninstall only the isl-devel package we can use the following command:

sudo dnf remove isl-devel

References

Summary

In this tutorial we learn how to install isl-devel on CentOS 8 using yum and dnf.