How To Install libspiro on AlmaLinux 8
Introduction
In this tutorial we learn how to install libspiro
on AlmaLinux 8.
What is libspiro
This library will take an array of spiro control points and convert them into a series of bézier splines which can then be used in the myriad of ways the world has come to use béziers.
We can use yum
or dnf
to install libspiro
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libspiro.
Install libspiro on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libspiro
using dnf
by running the following command:
sudo dnf -y install libspiro
Install libspiro on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libspiro
using yum
by running the following command:
sudo yum -y install libspiro
How To Uninstall libspiro on AlmaLinux 8
To uninstall only the libspiro
package we can use the following command:
sudo dnf remove libspiro
References
Summary
In this tutorial we learn how to install libspiro
on AlmaLinux 8 using yum and dnf.