How To Install librtprocess on Fedora 34
Introduction
In this tutorial we learn how to install librtprocess
on Fedora 34.
What is librtprocess
This is a project that aims to make some of RawTherapee’s highly optimized raw processing routines readily available for other FOSS photo editing software. The goal is to move certain source files from RawTherapee into this library. Thus, any changes to the source can be done here and will be used by the projects which use librtprocess. librtprocess 0.12.0 1.20210318gitbc2f53b.fc34 x86_64 148 k librtprocess-0.12.0-1.20210318gitbc2f53b.fc34.src.rpm fedora RawTherapee’s processing algorithms https GPLv3 This is a project that aims to make some of RawTherapee’s highly optimized raw processing routines readily available for other FOSS photo editing software. The goal is to move certain source files from RawTherapee into this library. Thus, any changes to the source can be done here and will be used by the projects which use librtprocess.
We can use yum
or dnf
to install librtprocess
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install librtprocess.
Install librtprocess 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 librtprocess
using dnf
by running the following command:
sudo dnf -y install librtprocess
Install librtprocess 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 librtprocess
using yum
by running the following command:
sudo yum -y install librtprocess
How To Uninstall librtprocess on Fedora 34
To uninstall only the librtprocess
package we can use the following command:
sudo dnf remove librtprocess
librtprocess Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/2a6e290cce3429a9e7d03082f3c8c25d16fca6
/usr/lib/librtprocess.so.0
/usr/lib/librtprocess.so.0.0.1
/usr/share/doc/librtprocess
/usr/share/doc/librtprocess/README.md
/usr/share/licenses/librtprocess
/usr/share/licenses/librtprocess/LICENSE.txt
/usr/lib/.build-id
/usr/lib/.build-id/95
/usr/lib/.build-id/95/1366fa7a10e3e79dae46d8ff6a7a132316be3f
/usr/lib64/librtprocess.so.0
/usr/lib64/librtprocess.so.0.0.1
/usr/share/doc/librtprocess
/usr/share/doc/librtprocess/README.md
/usr/share/licenses/librtprocess
/usr/share/licenses/librtprocess/LICENSE.txt
References
- [librtprocess website](https://github.com/CarVac/librtprocess https://github.com/CarVac/librtprocess)
Summary
In this tutorial we learn how to install librtprocess
on Fedora 34 using yum and dnf.