How To Install doxygen on Fedora 36
Introduction
In this tutorial we learn how to install doxygen
on Fedora 36.
What is doxygen
Doxygen can generate an online class browser (in HTML) and/or a reference manual (in LaTeX) from a set of documented source files. The documentation is extracted directly from the sources. Doxygen can also be configured to extract the code structure from undocumented source files.
We can use yum
or dnf
to install doxygen
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install doxygen.
Install doxygen 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 doxygen
using dnf
by running the following command:
sudo dnf -y install doxygen
Install doxygen 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 doxygen
using yum
by running the following command:
sudo yum -y install doxygen
How To Uninstall doxygen on Fedora 36
To uninstall only the doxygen
package we can use the following command:
sudo dnf remove doxygen
doxygen Package Contents on Fedora 36
/usr/bin/doxygen
/usr/bin/doxyindexer
/usr/bin/doxysearch.cgi
/usr/lib/.build-id
/usr/lib/.build-id/05
/usr/lib/.build-id/05/c815846a0ff3f6b0592cb1f15e5b47c0c5c64c
/usr/lib/.build-id/74
/usr/lib/.build-id/74/e1a680aa340f9e2c63bb35e251afffdbf80181
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/f37bd812ee5e0e0b329b67935ec4b23a6c6b3b
/usr/share/doc/doxygen
/usr/share/doc/doxygen/LANGUAGE.HOWTO
/usr/share/doc/doxygen/README.md
/usr/share/licenses/doxygen
/usr/share/licenses/doxygen/LICENSE
/usr/share/man/man1/doxygen.1.gz
/usr/share/man/man1/doxyindexer.1.gz
/usr/share/man/man1/doxysearch.1.gz
References
Summary
In this tutorial we learn how to install doxygen
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).