How To Install R-fastmatch on Fedora 36
Introduction
In this tutorial we learn how to install R-fastmatch
on Fedora 36.
What is R-fastmatch
Package providing a fast match() replacement for cases that require repeated look-ups. It is slightly faster that R’s built-in match() function on first match against a table, but extremely fast on any subsequent lookup as it keeps the hash table in memory.
We can use yum
or dnf
to install R-fastmatch
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-fastmatch.
Install R-fastmatch 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-fastmatch
using dnf
by running the following command:
sudo dnf -y install R-fastmatch
Install R-fastmatch 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-fastmatch
using yum
by running the following command:
sudo yum -y install R-fastmatch
How To Uninstall R-fastmatch on Fedora 36
To uninstall only the R-fastmatch
package we can use the following command:
sudo dnf remove R-fastmatch
R-fastmatch Package Contents on Fedora 36
/usr/lib/.build-id
/usr/lib/.build-id/be
/usr/lib/.build-id/be/1eff04f650549a7f7b8508981dbe47311fa28f
/usr/lib64/R/library/fastmatch
/usr/lib64/R/library/fastmatch/DESCRIPTION
/usr/lib64/R/library/fastmatch/INDEX
/usr/lib64/R/library/fastmatch/Meta
/usr/lib64/R/library/fastmatch/Meta/Rd.rds
/usr/lib64/R/library/fastmatch/Meta/features.rds
/usr/lib64/R/library/fastmatch/Meta/hsearch.rds
/usr/lib64/R/library/fastmatch/Meta/links.rds
/usr/lib64/R/library/fastmatch/Meta/nsInfo.rds
/usr/lib64/R/library/fastmatch/Meta/package.rds
/usr/lib64/R/library/fastmatch/NAMESPACE
/usr/lib64/R/library/fastmatch/NEWS
/usr/lib64/R/library/fastmatch/R
/usr/lib64/R/library/fastmatch/R/fastmatch
/usr/lib64/R/library/fastmatch/R/fastmatch.rdb
/usr/lib64/R/library/fastmatch/R/fastmatch.rdx
/usr/lib64/R/library/fastmatch/help
/usr/lib64/R/library/fastmatch/help/+25fin+25.html
/usr/lib64/R/library/fastmatch/help/AnIndex
/usr/lib64/R/library/fastmatch/help/aliases.rds
/usr/lib64/R/library/fastmatch/help/coalesce.html
/usr/lib64/R/library/fastmatch/help/ctapply.html
/usr/lib64/R/library/fastmatch/help/fastmatch.html
/usr/lib64/R/library/fastmatch/help/fastmatch.rdb
/usr/lib64/R/library/fastmatch/help/fastmatch.rdx
/usr/lib64/R/library/fastmatch/help/fmatch.hash.html
/usr/lib64/R/library/fastmatch/help/fmatch.html
/usr/lib64/R/library/fastmatch/help/paths.rds
/usr/lib64/R/library/fastmatch/html
/usr/lib64/R/library/fastmatch/html/00Index.html
/usr/lib64/R/library/fastmatch/html/R.css
/usr/lib64/R/library/fastmatch/html/coalesce.html
/usr/lib64/R/library/fastmatch/html/ctapply.html
/usr/lib64/R/library/fastmatch/html/fmatch.html
/usr/lib64/R/library/fastmatch/libs
/usr/lib64/R/library/fastmatch/libs/fastmatch.so
References
Summary
In this tutorial we learn how to install R-fastmatch
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).