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

Last updated: October 02,2024

1. Install "R-R6.noarch" package

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

$ 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 38:

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

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

Last metadata expiration check: 1:06:13 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : R-R6
Version : 2.5.1
Release : 6.fc38
Architecture : noarch
Size : 103 k
Source : R-R6-2.5.1-6.fc38.src.rpm
Repository : updates
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.