How To Install libnuml on Fedora 34
Introduction
In this tutorial we learn how to install libnuml
on Fedora 34.
What is libnuml
LibNuML is a library for reading/writing documents describing numerical results in an XML dialect. This release includes a number of improvements especially * improved object structure matching the specification document * ability to add notes and annotations * improved python support libnuml 1.1.3 1.20201214git50815eb.fc34 x86_64 96 k libnuml-1.1.3-1.20201214git50815eb.fc34.src.rpm fedora Numerical Markup Language https LGPLv2+ LibNuML is a library for reading/writing documents describing numerical results in an XML dialect. This release includes a number of improvements especially * improved object structure matching the specification document * ability to add notes and annotations * improved python support
We can use yum
or dnf
to install libnuml
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libnuml.
Install libnuml 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 libnuml
using dnf
by running the following command:
sudo dnf -y install libnuml
Install libnuml 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 libnuml
using yum
by running the following command:
sudo yum -y install libnuml
How To Uninstall libnuml on Fedora 34
To uninstall only the libnuml
package we can use the following command:
sudo dnf remove libnuml
libnuml Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/06
/usr/lib/.build-id/06/996878631c8c39dda40d091b35f08267417fb9
/usr/lib64/libnuml.so.1
/usr/lib64/libnuml.so.1.1.3
/usr/share/doc/libnuml
/usr/share/doc/libnuml/README.md
/usr/share/licenses/libnuml
/usr/share/licenses/libnuml/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/29
/usr/lib/.build-id/29/1b1a7af49cf944100d46cde6ad5b1d338e6553
/usr/lib/libnuml.so.1
/usr/lib/libnuml.so.1.1.3
/usr/share/doc/libnuml
/usr/share/doc/libnuml/README.md
/usr/share/licenses/libnuml
/usr/share/licenses/libnuml/LICENSE.txt
References
- [libnuml website](https://github.com/NuML/NuML https://github.com/NuML/NuML)
Summary
In this tutorial we learn how to install libnuml
on Fedora 34 using yum and dnf.