How to Install and Uninstall R-fastmap.x86_64 Package on Fedora 34

Last updated: October 10,2024

1. Install "R-fastmap.x86_64" package

This tutorial shows how to install R-fastmap.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install R-fastmap.x86_64

2. Uninstall "R-fastmap.x86_64" package

Learn how to uninstall R-fastmap.x86_64 on Fedora 34:

$ sudo dnf remove R-fastmap.x86_64 $ sudo dnf autoremove

3. Information about the R-fastmap.x86_64 package on Fedora 34

Last metadata expiration check: 5:58:46 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : R-fastmap
Version : 1.1.0
Release : 1.fc34
Architecture : x86_64
Size : 71 k
Source : R-fastmap-1.1.0-1.fc34.src.rpm
Repository : fedora
Summary : Fast Data Structures
URL : https://CRAN.R-project.org/package=fastmap
License : MIT
Description : Fast implementation of data structures, including a key-value store, stack,
: and queue. Environments are commonly used as key-value stores in R, but
: every time a new key is used, it is added to R's global symbol table,
: causing a small amount of memory leakage. This can be problematic in cases
: where many different keys are used. Fastmap avoids this memory leak issue
: by implementing the map using data structures in C++.