How To Install R-conflicted on Fedora 36

In this tutorial we learn how to install R-conflicted in Fedora 36. R-conflicted is An Alternative Conflict Resolution Strategy

Introduction

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

What is R-conflicted

R’s default conflict management system gives the most recently loaded package precedence. This can make it hard to detect conflicts, particularly when they arise because a package update creates ambiguity that did not previously exist. ‘conflicted’ takes a different approach, making every conflict an error and forcing you to choose which function to use.

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

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

sudo dnf -y install R-conflicted

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

sudo yum -y install R-conflicted

How To Uninstall R-conflicted on Fedora 36

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

sudo dnf remove R-conflicted

R-conflicted Package Contents on Fedora 36

/usr/share/R/library/conflicted
/usr/share/R/library/conflicted/DESCRIPTION
/usr/share/R/library/conflicted/INDEX
/usr/share/R/library/conflicted/Meta
/usr/share/R/library/conflicted/Meta/Rd.rds
/usr/share/R/library/conflicted/Meta/features.rds
/usr/share/R/library/conflicted/Meta/hsearch.rds
/usr/share/R/library/conflicted/Meta/links.rds
/usr/share/R/library/conflicted/Meta/nsInfo.rds
/usr/share/R/library/conflicted/Meta/package.rds
/usr/share/R/library/conflicted/NAMESPACE
/usr/share/R/library/conflicted/NEWS.md
/usr/share/R/library/conflicted/R
/usr/share/R/library/conflicted/R/conflicted
/usr/share/R/library/conflicted/R/conflicted.rdb
/usr/share/R/library/conflicted/R/conflicted.rdx
/usr/share/R/library/conflicted/help
/usr/share/R/library/conflicted/help/AnIndex
/usr/share/R/library/conflicted/help/aliases.rds
/usr/share/R/library/conflicted/help/conflict_prefer.html
/usr/share/R/library/conflicted/help/conflict_scout.html
/usr/share/R/library/conflicted/help/conflicted-package.html
/usr/share/R/library/conflicted/help/conflicted.html
/usr/share/R/library/conflicted/help/conflicted.rdb
/usr/share/R/library/conflicted/help/conflicted.rdx
/usr/share/R/library/conflicted/help/paths.rds
/usr/share/R/library/conflicted/html
/usr/share/R/library/conflicted/html/00Index.html
/usr/share/R/library/conflicted/html/R.css
/usr/share/R/library/conflicted/html/conflict_prefer.html
/usr/share/R/library/conflicted/html/conflict_scout.html
/usr/share/R/library/conflicted/html/conflicted-package.html

References

Summary

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