How To Install libsass-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install libsass-devel
on Rocky Linux 8.
What is libsass-devel
The libsass-devel package contains libraries and header files for developing applications that use libsass.
We can use yum
or dnf
to install libsass-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libsass-devel.
Install libsass-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 libsass-devel
using dnf
by running the following command:
sudo dnf -y install libsass-devel
Install libsass-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 libsass-devel
using yum
by running the following command:
sudo yum -y install libsass-devel
How To Uninstall libsass-devel on Rocky Linux 8
To uninstall only the libsass-devel
package we can use the following command:
sudo dnf remove libsass-devel
libsass-devel Package Contents on Rocky Linux 8
/usr/include/sass
/usr/include/sass.h
/usr/include/sass/base.h
/usr/include/sass/context.h
/usr/include/sass/functions.h
/usr/include/sass/values.h
/usr/include/sass/version.h
/usr/include/sass2scss.h
/usr/lib/libsass.so
/usr/lib/pkgconfig/libsass.pc
/usr/share/licenses/libsass-devel
/usr/share/licenses/libsass-devel/LICENSE
/usr/include/sass
/usr/include/sass.h
/usr/include/sass/base.h
/usr/include/sass/context.h
/usr/include/sass/functions.h
/usr/include/sass/values.h
/usr/include/sass/version.h
/usr/include/sass2scss.h
/usr/lib64/libsass.so
/usr/lib64/pkgconfig/libsass.pc
/usr/share/licenses/libsass-devel
/usr/share/licenses/libsass-devel/LICENSE
References
Summary
In this tutorial we learn how to install libsass-devel
on Rocky Linux 8 using yum and dnf.