How To Install lib3mf on Fedora 34

lib3mf is Implementation of the 3D Manufacturing Format file standard Implementation of the 3D Manufacturing Format file standard

Introduction

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

What is lib3mf

lib3mf is a C++ implementation of the 3D Manufacturing Format standard. This is a 3D printing standard for representing geometry as meshes. lib3mf 2.0.1 1.fc34 x86_64 500 k lib3mf-2.0.1-1.fc34.src.rpm fedora Implementation of the 3D Manufacturing Format file standard https BSD lib3mf is a C++ implementation of the 3D Manufacturing Format standard. This is a 3D printing standard for representing geometry as meshes.

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

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

sudo dnf -y install lib3mf

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

sudo yum -y install lib3mf

How To Uninstall lib3mf on Fedora 34

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

sudo dnf remove lib3mf

lib3mf Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/0b
/usr/lib/.build-id/0b/cdd75dadd156f239bca6abf4f6bb2721decef4
/usr/lib64/lib3mf.so.2
/usr/lib64/lib3mf.so.2.0.1.0
/usr/share/doc/lib3mf
/usr/share/doc/lib3mf/README.md
/usr/share/licenses/lib3mf
/usr/share/licenses/lib3mf/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/8e
/usr/lib/.build-id/8e/1fc4ff51879247dcd71d1527cc5199d5f96a7d
/usr/lib/lib3mf.so.2
/usr/lib/lib3mf.so.2.0.1.0
/usr/share/doc/lib3mf
/usr/share/doc/lib3mf/README.md
/usr/share/licenses/lib3mf
/usr/share/licenses/lib3mf/LICENSE

References

Summary

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