How To Install libpari23 on Fedora 34
Introduction
In this tutorial we learn how to install libpari23
on Fedora 34.
What is libpari23
PARI is a widely used computer algebra system designed for fast computations in number theory (factorizations, algebraic number theory, elliptic curves…), but also contains a large number of other useful functions to compute with mathematical entities such as matrices, polynomials, power series, algebraic numbers, etc., and a lot of transcendental functions. This is an old version of the library, for compatibility with applications and library bindings that have not been migrated to the current stable release. libpari23 2.3.5 20.fc34 x86_64 1.4 M libpari23-2.3.5-20.fc34.src.rpm fedora Number Theory-oriented Computer Algebra Library http GPL+ PARI is a widely used computer algebra system designed for fast computations in number theory (factorizations, algebraic number theory, elliptic curves…), but also contains a large number of other useful functions to compute with mathematical entities such as matrices, polynomials, power series, algebraic numbers, etc., and a lot of transcendental functions. This is an old version of the library, for compatibility with applications and library bindings that have not been migrated to the current stable release.
We can use yum
or dnf
to install libpari23
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libpari23.
Install libpari23 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 libpari23
using dnf
by running the following command:
sudo dnf -y install libpari23
Install libpari23 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 libpari23
using yum
by running the following command:
sudo yum -y install libpari23
How To Uninstall libpari23 on Fedora 34
To uninstall only the libpari23
package we can use the following command:
sudo dnf remove libpari23
libpari23 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/02
/usr/lib/.build-id/02/6f0f1a55f28a7e2c7efc130676f03e141e2bb4
/usr/lib/.build-id/62
/usr/lib/.build-id/62/2081c5fdf2a1a51adbc59f017f5b2c337c6200
/usr/lib/libpari.so.2
/usr/lib/libpari.so.2.3.5
/usr/share/doc/libpari23
/usr/share/doc/libpari23/AUTHORS
/usr/share/doc/libpari23/CHANGES
/usr/share/doc/libpari23/CHANGES-2.2
/usr/share/doc/libpari23/COMPAT
/usr/share/doc/libpari23/NEW
/usr/share/doc/libpari23/README
/usr/share/doc/libpari23/pari.cfg
/usr/share/licenses/libpari23
/usr/share/licenses/libpari23/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/41
/usr/lib/.build-id/41/dfd2fffb1fc3cad079de53ebb41b3f7c076cd2
/usr/lib/.build-id/9a
/usr/lib/.build-id/9a/38c789c77082baef700be42aac28bea5677993
/usr/lib64/libpari.so.2
/usr/lib64/libpari.so.2.3.5
/usr/share/doc/libpari23
/usr/share/doc/libpari23/AUTHORS
/usr/share/doc/libpari23/CHANGES
/usr/share/doc/libpari23/CHANGES-2.2
/usr/share/doc/libpari23/COMPAT
/usr/share/doc/libpari23/NEW
/usr/share/doc/libpari23/README
/usr/share/doc/libpari23/pari.cfg
/usr/share/licenses/libpari23
/usr/share/licenses/libpari23/COPYING
References
- [libpari23 website](http://pari.math.u-bordeaux.fr/ http://pari.math.u-bordeaux.fr/)
Summary
In this tutorial we learn how to install libpari23
on Fedora 34 using yum and dnf.