How To Install R-fastmap on Fedora 36
Introduction
In this tutorial we learn how to install R-fastmap
on Fedora 36.
What is R-fastmap
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++.
We can use yum
or dnf
to install R-fastmap
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-fastmap.
Install R-fastmap on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install R-fastmap
using dnf
by running the following command:
sudo dnf -y install R-fastmap
Install R-fastmap on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install R-fastmap
using yum
by running the following command:
sudo yum -y install R-fastmap
How To Uninstall R-fastmap on Fedora 36
To uninstall only the R-fastmap
package we can use the following command:
sudo dnf remove R-fastmap
R-fastmap Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/696905258141fef09f86b1bdf9d59815465a88
/usr/lib64/R/library/fastmap
/usr/lib64/R/library/fastmap/DESCRIPTION
/usr/lib64/R/library/fastmap/INDEX
/usr/lib64/R/library/fastmap/LICENSE
/usr/lib64/R/library/fastmap/Meta
/usr/lib64/R/library/fastmap/Meta/Rd.rds
/usr/lib64/R/library/fastmap/Meta/features.rds
/usr/lib64/R/library/fastmap/Meta/hsearch.rds
/usr/lib64/R/library/fastmap/Meta/links.rds
/usr/lib64/R/library/fastmap/Meta/nsInfo.rds
/usr/lib64/R/library/fastmap/Meta/package.rds
/usr/lib64/R/library/fastmap/NAMESPACE
/usr/lib64/R/library/fastmap/NEWS.md
/usr/lib64/R/library/fastmap/R
/usr/lib64/R/library/fastmap/R/fastmap
/usr/lib64/R/library/fastmap/R/fastmap.rdb
/usr/lib64/R/library/fastmap/R/fastmap.rdx
/usr/lib64/R/library/fastmap/help
/usr/lib64/R/library/fastmap/help/AnIndex
/usr/lib64/R/library/fastmap/help/aliases.rds
/usr/lib64/R/library/fastmap/help/fastmap.html
/usr/lib64/R/library/fastmap/help/fastmap.rdb
/usr/lib64/R/library/fastmap/help/fastmap.rdx
/usr/lib64/R/library/fastmap/help/fastqueue.html
/usr/lib64/R/library/fastmap/help/faststack.html
/usr/lib64/R/library/fastmap/help/is.key_missing.html
/usr/lib64/R/library/fastmap/help/key_missing.html
/usr/lib64/R/library/fastmap/help/paths.rds
/usr/lib64/R/library/fastmap/html
/usr/lib64/R/library/fastmap/html/00Index.html
/usr/lib64/R/library/fastmap/html/R.css
/usr/lib64/R/library/fastmap/html/fastmap.html
/usr/lib64/R/library/fastmap/html/fastqueue.html
/usr/lib64/R/library/fastmap/html/faststack.html
/usr/lib64/R/library/fastmap/html/key_missing.html
/usr/lib64/R/library/fastmap/libs
/usr/lib64/R/library/fastmap/libs/fastmap.so
References
Summary
In this tutorial we learn how to install R-fastmap
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).