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