How To Install OpenColorIO-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install OpenColorIO-devel
on Rocky Linux 8.
What is OpenColorIO-devel
Development libraries and headers for OpenColorIO.
We can use yum
or dnf
to install OpenColorIO-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install OpenColorIO-devel.
Install OpenColorIO-devel on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install OpenColorIO-devel
using dnf
by running the following command:
sudo dnf -y install OpenColorIO-devel
Install OpenColorIO-devel on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install OpenColorIO-devel
using yum
by running the following command:
sudo yum -y install OpenColorIO-devel
How To Uninstall OpenColorIO-devel on Rocky Linux 8
To uninstall only the OpenColorIO-devel
package we can use the following command:
sudo dnf remove OpenColorIO-devel
OpenColorIO-devel Package Contents on Rocky Linux 8
/usr/include/OpenColorIO
/usr/include/OpenColorIO/OpenColorABI.h
/usr/include/OpenColorIO/OpenColorIO.h
/usr/include/OpenColorIO/OpenColorTransforms.h
/usr/include/OpenColorIO/OpenColorTypes.h
/usr/lib64/libOpenColorIO.so
/usr/lib64/pkgconfig/OpenColorIO.pc
/usr/share/cmake/Modules/OpenColorIO-relwithdebinfo.cmake
/usr/share/cmake/Modules/OpenColorIO.cmake
/usr/share/cmake/Modules/OpenColorIOConfig.cmake
References
Summary
In this tutorial we learn how to install OpenColorIO-devel
on Rocky Linux 8 using yum and dnf.