How to Install and Uninstall R-R6.noarch Package on Fedora 39

Last updated: October 02,2024

1. Install "R-R6.noarch" package

Here is a brief guide to show you how to install R-R6.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install R-R6.noarch

2. Uninstall "R-R6.noarch" package

This is a short guide on how to uninstall R-R6.noarch on Fedora 39:

$ sudo dnf remove R-R6.noarch $ sudo dnf autoremove

3. Information about the R-R6.noarch package on Fedora 39

Last metadata expiration check: 2:05:16 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : R-R6
Version : 2.5.1
Release : 7.fc39
Architecture : noarch
Size : 103 k
Source : R-R6-2.5.1-7.fc39.src.rpm
Repository : fedora
Summary : Classes with Reference Semantics
URL : http://cran.r-project.org/web/packages/R6/index.html
License : MIT
Description : The R6 package allows the creation of classes with reference semantics,
: similar to R's built-in reference classes. Compared to reference classes,
: R6 classes are simpler and lighter-weight, and they are not built on S4
: classes so they do not require the methods package. These classes allow
: public and private members, and they support inheritance, even when the
: classes are defined in different packages.