How To Install givaro on Fedora 34

givaro is C++ library for arithmetic and algebraic computations C++ library for arithmetic and algebraic computations

Introduction

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

What is givaro

Givaro is a C++ library for arithmetic and algebraic computations. Its main features are implementations of the basic arithmetic of many mathematical entities Finite Rings, Polynomials, Algebraic numbers, Arbitrary precision integers and rationals (C++ wrappers over gmp). It also provides data-structures and templated classes for the manipulation of basic algebraic objects, such as vectors, matrices (dense, sparse, structured), and univariate polynomials (and therefore recursive multivariate). givaro 4.1.1 5.fc34 x86_64 108 k givaro-4.1.1-5.fc34.src.rpm fedora C++ library for arithmetic and algebraic computations https CeCILL-B Givaro is a C++ library for arithmetic and algebraic computations. Its main features are implementations of the basic arithmetic of many mathematical entities Finite Rings, Polynomials, Algebraic numbers, Arbitrary precision integers and rationals (C++ wrappers over gmp). It also provides data-structures and templated classes for the manipulation of basic algebraic objects, such as vectors, matrices (dense, sparse, structured), and univariate polynomials (and therefore recursive multivariate).

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

Install givaro 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 givaro using dnf by running the following command:

sudo dnf -y install givaro

Install givaro 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 givaro using yum by running the following command:

sudo yum -y install givaro

How To Uninstall givaro on Fedora 34

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

sudo dnf remove givaro

givaro Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/91ece60e84f2396232a8e81e08592bd3d52a6e
/usr/lib64/libgivaro.so.9
/usr/lib64/libgivaro.so.9.1.1
/usr/share/doc/givaro
/usr/share/doc/givaro/AUTHORS
/usr/share/doc/givaro/ChangeLog
/usr/share/doc/givaro/README.md
/usr/share/licenses/givaro
/usr/share/licenses/givaro/COPYING
/usr/share/licenses/givaro/COPYRIGHT
/usr/share/licenses/givaro/Licence_CeCILL-B_V1-en.txt
/usr/share/licenses/givaro/Licence_CeCILL-B_V1-fr.txt
/usr/lib/.build-id
/usr/lib/.build-id/35
/usr/lib/.build-id/35/7d2b2679d00824d9263e4fcc300231eded6deb
/usr/lib/libgivaro.so.9
/usr/lib/libgivaro.so.9.1.1
/usr/share/doc/givaro
/usr/share/doc/givaro/AUTHORS
/usr/share/doc/givaro/ChangeLog
/usr/share/doc/givaro/README.md
/usr/share/licenses/givaro
/usr/share/licenses/givaro/COPYING
/usr/share/licenses/givaro/COPYRIGHT
/usr/share/licenses/givaro/Licence_CeCILL-B_V1-en.txt
/usr/share/licenses/givaro/Licence_CeCILL-B_V1-fr.txt

References

Summary

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