How To Install expat on Fedora 36
Introduction
In this tutorial we learn how to install expat
on Fedora 36.
What is expat
This is expat, the C library for parsing XML, written by James Clark. Expat is a stream oriented XML parser. This means that you register handlers with the parser prior to starting the parse. These handlers are called when the parser discovers the associated structures in the document being parsed. A start tag is an example of the kind of structures for which you may register handlers.
We can use yum
or dnf
to install expat
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install expat.
Install expat on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install expat
using dnf
by running the following command:
sudo dnf -y install expat
Install expat on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install expat
using yum
by running the following command:
sudo yum -y install expat
How To Uninstall expat on Fedora 36
To uninstall only the expat
package we can use the following command:
sudo dnf remove expat
expat Package Contents on Fedora 36
/usr/bin/xmlwf
/usr/lib/.build-id
/usr/lib/.build-id/65
/usr/lib/.build-id/65/895627de7421b62b1c33275cc4e6f36032ef81
/usr/lib/.build-id/94
/usr/lib/.build-id/94/468a7b87ed73e66d57c666a6be4ace1ce6f67e
/usr/lib64/libexpat.so.1
/usr/lib64/libexpat.so.1.8.7
/usr/share/doc/expat
/usr/share/doc/expat/AUTHORS
/usr/share/doc/expat/Changes
/usr/share/licenses/expat
/usr/share/licenses/expat/COPYING
/usr/share/man/man1/xmlwf.1.gz
References
Summary
In this tutorial we learn how to install expat
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).