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

Last updated: November 27,2024

1. Install "R-fastmap.x86_64" package

This guide let you learn how to install R-fastmap.x86_64 on Fedora 38

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

2. Uninstall "R-fastmap.x86_64" package

This is a short guide on how to uninstall R-fastmap.x86_64 on Fedora 38:

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

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

Last metadata expiration check: 4:28:49 ago on Sat Mar 16 16:59:57 2024.
Available Packages
Name : R-fastmap
Version : 1.1.1
Release : 2.fc38
Architecture : x86_64
Size : 85 k
Source : R-fastmap-1.1.1-2.fc38.src.rpm
Repository : updates
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++.