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

Last updated: July 01,2024

1. Install "R-listenv.noarch" package

This guide covers the steps necessary to install R-listenv.noarch on Fedora 35

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

2. Uninstall "R-listenv.noarch" package

Please follow the step by step instructions below to uninstall R-listenv.noarch on Fedora 35:

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

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

Last metadata expiration check: 2:06:37 ago on Wed Sep 7 14:25:02 2022.
Available Packages
Name : R-listenv
Version : 0.8.0
Release : 7.fc35
Architecture : noarch
Size : 118 k
Source : R-listenv-0.8.0-7.fc35.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)'.