How To Install R-microbats on Fedora 36
Introduction
In this tutorial we learn how to install R-microbats
on Fedora 36.
What is R-microbats
A nature-inspired metaheuristic algorithm based on the echolocation behavior of microbats that uses frequency tuning to optimize problems in both continuous and discrete dimensions. This R package makes it easy to implement the standard bat algorithm on any user-supplied function. The algorithm was first developed by Xin-She Yang in 2010 (<doi
We can use yum
or dnf
to install R-microbats
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-microbats.
Install R-microbats 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-microbats
using dnf
by running the following command:
sudo dnf -y install R-microbats
Install R-microbats 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-microbats
using yum
by running the following command:
sudo yum -y install R-microbats
How To Uninstall R-microbats on Fedora 36
To uninstall only the R-microbats
package we can use the following command:
sudo dnf remove R-microbats
R-microbats Package Contents on Fedora 36
/usr/share/R/library/microbats
/usr/share/R/library/microbats/DESCRIPTION
/usr/share/R/library/microbats/INDEX
/usr/share/R/library/microbats/Meta
/usr/share/R/library/microbats/Meta/Rd.rds
/usr/share/R/library/microbats/Meta/features.rds
/usr/share/R/library/microbats/Meta/hsearch.rds
/usr/share/R/library/microbats/Meta/links.rds
/usr/share/R/library/microbats/Meta/nsInfo.rds
/usr/share/R/library/microbats/Meta/package.rds
/usr/share/R/library/microbats/NAMESPACE
/usr/share/R/library/microbats/R
/usr/share/R/library/microbats/R/microbats
/usr/share/R/library/microbats/R/microbats.rdb
/usr/share/R/library/microbats/R/microbats.rdx
/usr/share/R/library/microbats/help
/usr/share/R/library/microbats/help/AnIndex
/usr/share/R/library/microbats/help/aliases.rds
/usr/share/R/library/microbats/help/bat_optim.html
/usr/share/R/library/microbats/help/microbats.rdb
/usr/share/R/library/microbats/help/microbats.rdx
/usr/share/R/library/microbats/help/paths.rds
/usr/share/R/library/microbats/html
/usr/share/R/library/microbats/html/00Index.html
/usr/share/R/library/microbats/html/R.css
/usr/share/R/library/microbats/html/bat_optim.html
References
Summary
In this tutorial we learn how to install R-microbats
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).