How To Install libsedml on Fedora 34

libsedml is Library that fully supports SED-ML for SBML Library that fully supports SED-ML for SBML

Introduction

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

What is libsedml

C++ library that fully supports SED-ML (Simulation Experiment Description Markup Language) for SBML as well as CellML models for creation of the description just as for the execution of Simulation Experiments. This project makes use of libSBML XML layer as well as code generation as starting point to produce a library for reading and writing of SED-ML models. This package provides header and library files of libsedml. libsedml 2 2.0.20 0.1.fc34 x86_64 458 k libsedml-2.0.20-0.1.fc34.src.rpm updates Library that fully supports SED-ML for SBML https BSD C++ library that fully supports SED-ML (Simulation Experiment Description Markup Language) for SBML as well as CellML models for creation of the description just as for the execution of Simulation Experiments. This project makes use of libSBML XML layer as well as code generation as starting point to produce a library for reading and writing of SED-ML models. This package provides header and library files of libsedml.

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

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

sudo dnf -y install libsedml

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

sudo yum -y install libsedml

How To Uninstall libsedml on Fedora 34

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

sudo dnf remove libsedml

libsedml Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/8dd413032b3b33a1c2dfc9be621d204f63d573
/usr/lib64/libsedml.so.2
/usr/lib64/libsedml.so.2.0.20
/usr/share/doc/libsedml
/usr/share/doc/libsedml/NEWS.md
/usr/share/doc/libsedml/README.md
/usr/share/licenses/libsedml
/usr/share/licenses/libsedml/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/6c
/usr/lib/.build-id/6c/b4cf58ba1b47c5dcc0166833d0f80cd7ce7d06
/usr/lib/libsedml.so.0
/usr/lib/libsedml.so.0.4.4
/usr/share/doc/libsedml
/usr/share/doc/libsedml/NEWS.md
/usr/share/doc/libsedml/README.md
/usr/share/licenses/libsedml
/usr/share/licenses/libsedml/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/a0
/usr/lib/.build-id/a0/c494e41b315616b6fcbf52851171623d3abbf2
/usr/lib64/libsedml.so.0
/usr/lib64/libsedml.so.0.4.4
/usr/share/doc/libsedml
/usr/share/doc/libsedml/NEWS.md
/usr/share/doc/libsedml/README.md
/usr/share/licenses/libsedml
/usr/share/licenses/libsedml/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/c9
/usr/lib/.build-id/c9/a564eced1a781166d3e4cd5082b36f80747573
/usr/lib/libsedml.so.2
/usr/lib/libsedml.so.2.0.20
/usr/share/doc/libsedml
/usr/share/doc/libsedml/NEWS.md
/usr/share/doc/libsedml/README.md
/usr/share/licenses/libsedml
/usr/share/licenses/libsedml/LICENSE.txt

References

Summary

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