How To Install isl on Rocky Linux 8

In this tutorial we learn how to install isl on Rocky Linux 8. isl is Integer point manipulation library

Introduction

In this tutorial we learn how to install isl on Rocky Linux 8.

What is isl

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 on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install isl.

Install isl on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install isl

Install isl on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install isl

How To Uninstall isl on Rocky Linux 8

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

sudo dnf remove isl

isl Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/09
/usr/lib/.build-id/09/f713f7d4e21e19fcef6b634768611446684128
/usr/lib/.build-id/7c
/usr/lib/.build-id/7c/28039b15dae453308a4663ecac04f9b3d1c164
/usr/lib/libisl.so.13
/usr/lib/libisl.so.13.1.0
/usr/lib/libisl.so.15
/usr/lib/libisl.so.15.1.1
/usr/share/doc/isl
/usr/share/doc/isl/AUTHORS
/usr/share/doc/isl/ChangeLog
/usr/share/doc/isl/README
/usr/share/gdb/auto-load/usr/lib/libisl.so.13.1.0-gdb.py
/usr/share/gdb/auto-load/usr/lib/libisl.so.15.1.1-gdb.py
/usr/share/licenses/isl
/usr/share/licenses/isl/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/ffd0fcd8f939ed2566d959b37e51fd07890342
/usr/lib/.build-id/cc
/usr/lib/.build-id/cc/a1d29eec387f4c8da2b9810ce84afe48f1dbc0
/usr/lib64/libisl.so.13
/usr/lib64/libisl.so.13.1.0
/usr/lib64/libisl.so.15
/usr/lib64/libisl.so.15.1.1
/usr/share/doc/isl
/usr/share/doc/isl/AUTHORS
/usr/share/doc/isl/ChangeLog
/usr/share/doc/isl/README
/usr/share/gdb/auto-load/usr/lib64/libisl.so.13.1.0-gdb.py
/usr/share/gdb/auto-load/usr/lib64/libisl.so.15.1.1-gdb.py
/usr/share/licenses/isl
/usr/share/licenses/isl/LICENSE

References

Summary

In this tutorial we learn how to install isl on Rocky Linux 8 using yum and dnf.