How To Install nickle-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install nickle-devel
on Rocky Linux 8.
What is nickle-devel
Include files for Nickle, used for building external FFI (foreign function interface) libraries (e.g. the Cairo interface for Nickle).
We can use yum
or dnf
to install nickle-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install nickle-devel.
Install nickle-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 nickle-devel
using dnf
by running the following command:
sudo dnf -y install nickle-devel
Install nickle-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 nickle-devel
using yum
by running the following command:
sudo yum -y install nickle-devel
How To Uninstall nickle-devel on Rocky Linux 8
To uninstall only the nickle-devel
package we can use the following command:
sudo dnf remove nickle-devel
nickle-devel Package Contents on Rocky Linux 8
/usr/include/nickle
/usr/include/nickle/builtin-namespaces.h
/usr/include/nickle/builtin.h
/usr/include/nickle/gram.h
/usr/include/nickle/mem.h
/usr/include/nickle/memp.h
/usr/include/nickle/nickle-config.h
/usr/include/nickle/nickle.h
/usr/include/nickle/opcode.h
/usr/include/nickle/ref.h
/usr/include/nickle/stack.h
/usr/include/nickle/value.h
References
Summary
In this tutorial we learn how to install nickle-devel
on Rocky Linux 8 using yum and dnf.