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

Last updated: May 07,2024

1. Install "R-R6.noarch" package

This guide covers the steps necessary to install R-R6.noarch on Fedora 36

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

2. Uninstall "R-R6.noarch" package

This guide let you learn how to uninstall R-R6.noarch on Fedora 36:

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

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

Last metadata expiration check: 4:27:31 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : R-R6
Version : 2.5.1
Release : 2.fc36
Architecture : noarch
Size : 96 k
Source : R-R6-2.5.1-2.fc36.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.