How To Install pynac on Fedora 34
Introduction
In this tutorial we learn how to install pynac
on Fedora 34.
What is pynac
Pynac is a derivative of the C++ library GiNaC, which allows manipulation of symbolic expressions. It currently provides the backend for symbolic expressions in Sage. The main difference between Pynac and GiNaC is that Pynac relies on Sage to provide the operations on numerical types, while GiNaC depends on CLN for this purpose. pynac 0.7.27 2.fc34 x86_64 676 k pynac-0.7.27-2.fc34.src.rpm updates Manipulation of symbolic expressions http GPLv2+ Pynac is a derivative of the C++ library GiNaC, which allows manipulation of symbolic expressions. It currently provides the backend for symbolic expressions in Sage. The main difference between Pynac and GiNaC is that Pynac relies on Sage to provide the operations on numerical types, while GiNaC depends on CLN for this purpose.
We can use yum
or dnf
to install pynac
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install pynac.
Install pynac 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 pynac
using dnf
by running the following command:
sudo dnf -y install pynac
Install pynac 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 pynac
using yum
by running the following command:
sudo yum -y install pynac
How To Uninstall pynac on Fedora 34
To uninstall only the pynac
package we can use the following command:
sudo dnf remove pynac
pynac Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/3a
/usr/lib/.build-id/3a/c4dacba866f1c794d72ef13f3c631a454f08c2
/usr/lib/libpynac.so.18
/usr/lib/libpynac.so.18.3.5
/usr/share/doc/pynac
/usr/share/doc/pynac/AUTHORS
/usr/share/doc/pynac/ChangeLog
/usr/share/doc/pynac/NEWS
/usr/share/doc/pynac/README
/usr/share/licenses/pynac
/usr/share/licenses/pynac/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/4d
/usr/lib/.build-id/4d/c70b0a920afd9a6569e199f48ab74a1dd46484
/usr/lib64/libpynac.so.18
/usr/lib64/libpynac.so.18.3.5
/usr/share/doc/pynac
/usr/share/doc/pynac/AUTHORS
/usr/share/doc/pynac/ChangeLog
/usr/share/doc/pynac/NEWS
/usr/share/doc/pynac/README
/usr/share/licenses/pynac
/usr/share/licenses/pynac/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/6a
/usr/lib/.build-id/6a/b5c0b377ccaef51a42aecd72d75e5d0167528f
/usr/lib/libpynac.so.18
/usr/lib/libpynac.so.18.3.4
/usr/share/doc/pynac
/usr/share/doc/pynac/AUTHORS
/usr/share/doc/pynac/ChangeLog
/usr/share/doc/pynac/NEWS
/usr/share/doc/pynac/README
/usr/share/licenses/pynac
/usr/share/licenses/pynac/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/e2
/usr/lib/.build-id/e2/58dcb6b69631432939206c909b993f6b15652e
/usr/lib64/libpynac.so.18
/usr/lib64/libpynac.so.18.3.4
/usr/share/doc/pynac
/usr/share/doc/pynac/AUTHORS
/usr/share/doc/pynac/ChangeLog
/usr/share/doc/pynac/NEWS
/usr/share/doc/pynac/README
/usr/share/licenses/pynac
/usr/share/licenses/pynac/COPYING
References
- [pynac website](http://pynac.org/ http://pynac.org/)
Summary
In this tutorial we learn how to install pynac
on Fedora 34 using yum and dnf.