How To Install perl-Math-ConvexHull on Fedora 36

In this tutorial we learn how to install perl-Math-ConvexHull in Fedora 36. perl-Math-ConvexHull is Calculate convex hulls using Graham’s scan (n*log(n))

Introduction

In this tutorial we learn how to install perl-Math-ConvexHull on Fedora 36.

What is perl-Math-ConvexHull

Math of points in 2D space. It is a straightforward implementation of the algorithm known as Graham’s scan which, with complexity of O(n*log(n)), is the fastest known method of finding the convex hull of an arbitrary set of points. There are some methods of eliminating points that cannot be part of the convex hull. These may or may not be implemented in a future version.

We can use yum or dnf to install perl-Math-ConvexHull on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Math-ConvexHull.

Install perl-Math-ConvexHull on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-Math-ConvexHull using dnf by running the following command:

sudo dnf -y install perl-Math-ConvexHull

Install perl-Math-ConvexHull on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-Math-ConvexHull using yum by running the following command:

sudo yum -y install perl-Math-ConvexHull

How To Uninstall perl-Math-ConvexHull on Fedora 36

To uninstall only the perl-Math-ConvexHull package we can use the following command:

sudo dnf remove perl-Math-ConvexHull

perl-Math-ConvexHull Package Contents on Fedora 36

/usr/share/doc/perl-Math-ConvexHull
/usr/share/doc/perl-Math-ConvexHull/Changes
/usr/share/doc/perl-Math-ConvexHull/README
/usr/share/man/man3/Math::ConvexHull.3pm.gz
/usr/share/perl5/vendor_perl/Math
/usr/share/perl5/vendor_perl/Math/ConvexHull.pm

References

Summary

In this tutorial we learn how to install perl-Math-ConvexHull on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).