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

Last updated: September 19,2024

1. Install "R-listenv.noarch" package

Please follow the guidelines below to install R-listenv.noarch on Fedora 34

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

2. Uninstall "R-listenv.noarch" package

This guide covers the steps necessary to uninstall R-listenv.noarch on Fedora 34:

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

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

Last metadata expiration check: 0:24:52 ago on Tue Sep 6 02:10:55 2022.
Available Packages
Name : R-listenv
Version : 0.8.0
Release : 5.fc34
Architecture : noarch
Size : 113 k
Source : R-listenv-0.8.0-5.fc34.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)'.