How To Install libpoly on Fedora 34

libpoly is C library for manipulating polynomials C library for manipulating polynomials

Introduction

In this tutorial we learn how to install libpoly on Fedora 34.

What is libpoly

LibPoly is a C library for manipulating polynomials. The target applications are symbolic reasoning engines, such as SMT solvers, that need to reason about polynomial constraints. libpoly 0.1.10 1.fc34 x86_64 185 k libpoly-0.1.10-1.fc34.src.rpm updates C library for manipulating polynomials https LGPLv3+ LibPoly is a C library for manipulating polynomials. The target applications are symbolic reasoning engines, such as SMT solvers, that need to reason about polynomial constraints.

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

Install libpoly on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo dnf -y install libpoly

Install libpoly on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

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

sudo yum -y install libpoly

How To Uninstall libpoly on Fedora 34

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

sudo dnf remove libpoly

libpoly Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/45
/usr/lib/.build-id/45/1d65e76d21b1e41619270b17c7b49c9484db20
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/ec29a6f5af0b16a563e677fe88bc348156c243
/usr/lib64/libpoly.so.0
/usr/lib64/libpoly.so.0.1.9
/usr/lib64/libpolyxx.so.0
/usr/lib64/libpolyxx.so.0.1.9
/usr/share/doc/libpoly
/usr/share/doc/libpoly/README.md
/usr/share/licenses/libpoly
/usr/share/licenses/libpoly/LICENCE
/usr/lib/.build-id
/usr/lib/.build-id/90
/usr/lib/.build-id/90/dc1d74f8d348daa88a3454fe37c9a97bacac14
/usr/lib64/libpoly.so.0
/usr/lib64/libpoly.so.0.1.8
/usr/share/doc/libpoly
/usr/share/doc/libpoly/README.md
/usr/share/licenses/libpoly
/usr/share/licenses/libpoly/LICENCE
/usr/lib/.build-id
/usr/lib/.build-id/a8
/usr/lib/.build-id/a8/a42e69b94967703ad1c7c43caba9bb86e75a16
/usr/lib/libpoly.so.0
/usr/lib/libpoly.so.0.1.8
/usr/share/doc/libpoly
/usr/share/doc/libpoly/README.md
/usr/share/licenses/libpoly
/usr/share/licenses/libpoly/LICENCE
/usr/lib/.build-id
/usr/lib/.build-id/d3
/usr/lib/.build-id/d3/6fefea6afc13315438f685ad1051c54f683d60
/usr/lib/.build-id/df
/usr/lib/.build-id/df/befc24a2405413ee121183c00ae2f987daaced
/usr/lib/libpoly.so.0
/usr/lib/libpoly.so.0.1.9
/usr/lib/libpolyxx.so.0
/usr/lib/libpolyxx.so.0.1.9
/usr/share/doc/libpoly
/usr/share/doc/libpoly/README.md
/usr/share/licenses/libpoly
/usr/share/licenses/libpoly/LICENCE

References

Summary

In this tutorial we learn how to install libpoly on Fedora 34 using yum and dnf.