How To Install libCombine on Fedora 34
Introduction
In this tutorial we learn how to install libCombine
on Fedora 34.
What is libCombine
LibCombine implements a C++ API library providing support for the Combine Archive. The library is written after the likeness of libSBML (and in fact some classes have been generated using DEVISER). Thus even thought he core is written in C++, the classes can be accessed via SWIG from .NET, Java and Python. libCombine 0.2.7 7.fc34 x86_64 148 k libCombine-0.2.7-7.fc34.src.rpm fedora C++ library for working with the COMBINE Archive format https BSD and LGPLv2+ LibCombine implements a C++ API library providing support for the Combine Archive. The library is written after the likeness of libSBML (and in fact some classes have been generated using DEVISER). Thus even thought he core is written in C++, the classes can be accessed via SWIG from .NET, Java and Python.
We can use yum
or dnf
to install libCombine
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libCombine.
Install libCombine 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 libCombine
using dnf
by running the following command:
sudo dnf -y install libCombine
Install libCombine 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 libCombine
using yum
by running the following command:
sudo yum -y install libCombine
How To Uninstall libCombine on Fedora 34
To uninstall only the libCombine
package we can use the following command:
sudo dnf remove libCombine
libCombine Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/cd
/usr/lib/.build-id/cd/e2d0eed764a0dbfd076c5551e1ce5c1f1fd1f2
/usr/lib/libCombine.so.0
/usr/lib/libCombine.so.0.2.7
/usr/share/doc/libCombine
/usr/share/doc/libCombine/README.md
/usr/share/doc/libCombine/VERSION.txt
/usr/share/licenses/libCombine
/usr/share/licenses/libCombine/LICENSE.md
/usr/lib/.build-id
/usr/lib/.build-id/db
/usr/lib/.build-id/db/99e795a00c7b4a6b10dd72e40a7b36a4bbe41f
/usr/lib64/libCombine.so.0
/usr/lib64/libCombine.so.0.2.7
/usr/share/doc/libCombine
/usr/share/doc/libCombine/README.md
/usr/share/doc/libCombine/VERSION.txt
/usr/share/licenses/libCombine
/usr/share/licenses/libCombine/LICENSE.md
References
- [libCombine website](https://github.com/sbmlteam/libCombine https://github.com/sbmlteam/libCombine)
Summary
In this tutorial we learn how to install libCombine
on Fedora 34 using yum and dnf.