How To Install R-cyclocomp on Fedora 36

In this tutorial we learn how to install R-cyclocomp in Fedora 36. R-cyclocomp is Cyclomatic Complexity of R Code

Introduction

In this tutorial we learn how to install R-cyclocomp on Fedora 36.

What is R-cyclocomp

Cyclomatic complexity is a software metric (measurement), used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program’s source code. It was developed by Thomas J. McCabe, Sr. in 1976.

We can use yum or dnf to install R-cyclocomp on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-cyclocomp.

Install R-cyclocomp 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 R-cyclocomp using dnf by running the following command:

sudo dnf -y install R-cyclocomp

Install R-cyclocomp 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 R-cyclocomp using yum by running the following command:

sudo yum -y install R-cyclocomp

How To Uninstall R-cyclocomp on Fedora 36

To uninstall only the R-cyclocomp package we can use the following command:

sudo dnf remove R-cyclocomp

R-cyclocomp Package Contents on Fedora 36

/usr/share/R/library/cyclocomp
/usr/share/R/library/cyclocomp/DESCRIPTION
/usr/share/R/library/cyclocomp/INDEX
/usr/share/R/library/cyclocomp/LICENSE
/usr/share/R/library/cyclocomp/Meta
/usr/share/R/library/cyclocomp/Meta/Rd.rds
/usr/share/R/library/cyclocomp/Meta/features.rds
/usr/share/R/library/cyclocomp/Meta/hsearch.rds
/usr/share/R/library/cyclocomp/Meta/links.rds
/usr/share/R/library/cyclocomp/Meta/nsInfo.rds
/usr/share/R/library/cyclocomp/Meta/package.rds
/usr/share/R/library/cyclocomp/NAMESPACE
/usr/share/R/library/cyclocomp/NEWS.md
/usr/share/R/library/cyclocomp/R
/usr/share/R/library/cyclocomp/R/cyclocomp
/usr/share/R/library/cyclocomp/R/cyclocomp.rdb
/usr/share/R/library/cyclocomp/R/cyclocomp.rdx
/usr/share/R/library/cyclocomp/help
/usr/share/R/library/cyclocomp/help/AnIndex
/usr/share/R/library/cyclocomp/help/aliases.rds
/usr/share/R/library/cyclocomp/help/cyclocomp-package.html
/usr/share/R/library/cyclocomp/help/cyclocomp.html
/usr/share/R/library/cyclocomp/help/cyclocomp.rdb
/usr/share/R/library/cyclocomp/help/cyclocomp.rdx
/usr/share/R/library/cyclocomp/help/cyclocomp_package.html
/usr/share/R/library/cyclocomp/help/cyclocomp_package_dir.html
/usr/share/R/library/cyclocomp/help/cyclocomp_q.html
/usr/share/R/library/cyclocomp/help/paths.rds
/usr/share/R/library/cyclocomp/html
/usr/share/R/library/cyclocomp/html/00Index.html
/usr/share/R/library/cyclocomp/html/R.css
/usr/share/R/library/cyclocomp/html/cyclocomp.html
/usr/share/R/library/cyclocomp/html/cyclocomp_package.html
/usr/share/R/library/cyclocomp/html/cyclocomp_package_dir.html

References

Summary

In this tutorial we learn how to install R-cyclocomp on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).