How To Install rply on Fedora 34

rply is A library to read and write PLY files A library to read and write PLY files

Introduction

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

What is rply

RPly is a library that lets applications read and write PLY files. The PLY file format is widely used to store geometric information, such as 3D models, but is general enough to be useful for other purposes. RPly is easy to use, well documented, small, free, open-source, ANSI C, efficient, and well tested. The highlights are * A callback mechanism that makes PLY file input straightforward; * Support for the full range of numeric formats; * Binary (big and little endian) and text modes are fully supported; * Input and output are buffered for efficiency; * Available under the MIT license for added freedom. rply 1.1.2 18.fc34 x86_64 46 k rply-1.1.2-18.fc34.src.rpm fedora A library to read and write PLY files http MIT RPly is a library that lets applications read and write PLY files. The PLY file format is widely used to store geometric information, such as 3D models, but is general enough to be useful for other purposes. RPly is easy to use, well documented, small, free, open-source, ANSI C, efficient, and well tested. The highlights are * A callback mechanism that makes PLY file input straightforward; * Support for the full range of numeric formats; * Binary (big and little endian) and text modes are fully supported; * Input and output are buffered for efficiency; * Available under the MIT license for added freedom.

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

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

sudo dnf -y install rply

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

sudo yum -y install rply

How To Uninstall rply on Fedora 34

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

sudo dnf remove rply

rply Package Contents on Fedora 34

/usr/bin/rply_convert
/usr/bin/rply_dump
/usr/bin/rply_sconvert
/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/7718192e50e24f246427970c9d61e6015a694b
/usr/lib/.build-id/82
/usr/lib/.build-id/82/0497d1714fe9ea9cbce920b58051c033478d9c
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/cc8ee8aac710a775ca6647b8a88e7b3730afa6
/usr/lib/.build-id/d8
/usr/lib/.build-id/d8/0225202856a74febb3efd0e6fa2def094f0779
/usr/lib64/librply.so.1
/usr/lib64/librply.so.1.01
/usr/share/doc/rply
/usr/share/doc/rply/LICENSE
/usr/share/doc/rply/manual.html
/usr/share/doc/rply/reference.css
/usr/share/doc/rply/rply.png
/usr/bin/rply_convert
/usr/bin/rply_dump
/usr/bin/rply_sconvert
/usr/lib/.build-id
/usr/lib/.build-id/41
/usr/lib/.build-id/41/01bbb7e908b0f602775c03b3bfa2559fc058b1
/usr/lib/.build-id/46
/usr/lib/.build-id/46/0f443a5d9c75c0142ee11f61b94dac58599aa9
/usr/lib/.build-id/84
/usr/lib/.build-id/84/bf4bd5671bf84cdf213804b92f38c7fd1ce456
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/a0e65bcd89e4ef0baebd9a542ba7f0bfdac4b3
/usr/lib/librply.so.1
/usr/lib/librply.so.1.01
/usr/share/doc/rply
/usr/share/doc/rply/LICENSE
/usr/share/doc/rply/manual.html
/usr/share/doc/rply/reference.css
/usr/share/doc/rply/rply.png

References

Summary

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