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

Last updated: October 07,2024

1. Install "R-listenv.noarch" package

Please follow the steps below to install R-listenv.noarch on Fedora 36

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

2. Uninstall "R-listenv.noarch" package

In this section, we are going to explain the necessary steps to uninstall R-listenv.noarch on Fedora 36:

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

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

Last metadata expiration check: 5:44:43 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : R-listenv
Version : 0.8.0
Release : 8.fc36
Architecture : noarch
Size : 118 k
Source : R-listenv-0.8.0-8.fc36.src.rpm
Repository : fedora
Summary : Environments Behaving (Almost) as Lists
URL : https://CRAN.R-project.org/package=listenv
License : LGPLv2+
Description : List environments are environments that have list-like properties. For
: instance, the elements of a list environment are ordered and can be
: accessed and iterated over using index subsetting, e.g. 'x <- listenv(a =
: 1, b = 2); for (i in seq_along(x)) x[[i]] <- x[[i]] ^ 2; y <- as.list(x)'.