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

Last updated: November 28,2024

1. Install "R-fastmap.x86_64" package

Please follow the guidelines below to install R-fastmap.x86_64 on Fedora 39

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

2. Uninstall "R-fastmap.x86_64" package

This guide covers the steps necessary to uninstall R-fastmap.x86_64 on Fedora 39:

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

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

Last metadata expiration check: 4:05:43 ago on Thu Mar 7 17:44:52 2024.
Available Packages
Name : R-fastmap
Version : 1.1.1
Release : 3.fc39
Architecture : x86_64
Size : 85 k
Source : R-fastmap-1.1.1-3.fc39.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++.