How To Install R-future on Fedora 36
Introduction
In this tutorial we learn how to install R-future
on Fedora 36.
What is R-future
The purpose of this package is to provide a lightweight and unified Future API for sequential and parallel processing of R expression via futures. The simplest way to evaluate an expression in parallel is to use
x %<-% { expression }
withplan(multisession)
. This package implements sequential, multicore, multisession, and cluster futures. With these, R expressions can be evaluated on the local machine, in parallel a set of local machines, or distributed on a mix of local and remote machines. Extensions to this package implement additional backends for processing futures via compute cluster schedulers, etc. Because of its unified API, there is no need to modify any code in order switch from sequential on the local machine to, say, distributed processing on a remote compute cluster. Another strength of this package is that global variables and functions are automatically identified and exported as needed, making it straightforward to tweak existing code to make use of futures.
We can use yum
or dnf
to install R-future
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-future.
Install R-future 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-future
using dnf
by running the following command:
sudo dnf -y install R-future
Install R-future 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-future
using yum
by running the following command:
sudo yum -y install R-future
How To Uninstall R-future on Fedora 36
To uninstall only the R-future
package we can use the following command:
sudo dnf remove R-future
R-future Package Contents on Fedora 36
/usr/share/R/library/future
/usr/share/R/library/future/CITATION
/usr/share/R/library/future/DESCRIPTION
/usr/share/R/library/future/INDEX
/usr/share/R/library/future/Meta
/usr/share/R/library/future/Meta/Rd.rds
/usr/share/R/library/future/Meta/demo.rds
/usr/share/R/library/future/Meta/features.rds
/usr/share/R/library/future/Meta/hsearch.rds
/usr/share/R/library/future/Meta/links.rds
/usr/share/R/library/future/Meta/nsInfo.rds
/usr/share/R/library/future/Meta/package.rds
/usr/share/R/library/future/Meta/vignette.rds
/usr/share/R/library/future/NAMESPACE
/usr/share/R/library/future/NEWS
/usr/share/R/library/future/R
/usr/share/R/library/future/R/future
/usr/share/R/library/future/R/future.rdb
/usr/share/R/library/future/R/future.rdx
/usr/share/R/library/future/WORDLIST
/usr/share/R/library/future/demo
/usr/share/R/library/future/demo/fibonacci.R
/usr/share/R/library/future/demo/mandelbrot.R
/usr/share/R/library/future/doc
/usr/share/R/library/future/doc/future-1-overview.html
/usr/share/R/library/future/doc/future-1-overview.md.rsp
/usr/share/R/library/future/doc/future-2-output.html
/usr/share/R/library/future/doc/future-2-output.md.rsp
/usr/share/R/library/future/doc/future-3-topologies.html
/usr/share/R/library/future/doc/future-3-topologies.md.rsp
/usr/share/R/library/future/doc/future-4-issues.html
/usr/share/R/library/future/doc/future-4-issues.md.rsp
/usr/share/R/library/future/doc/future-4-non-exportable-objects.html
/usr/share/R/library/future/doc/future-4-non-exportable-objects.md.rsp
/usr/share/R/library/future/doc/future-5-startup.html
/usr/share/R/library/future/doc/future-5-startup.md.rsp
/usr/share/R/library/future/doc/future-6-future-api-backend-specification.html
/usr/share/R/library/future/doc/future-6-future-api-backend-specification.md.rsp
/usr/share/R/library/future/doc/future-7-for-package-developers.html
/usr/share/R/library/future/doc/future-7-for-package-developers.md.rsp
/usr/share/R/library/future/doc/future-8-how-future-is-validated.html
/usr/share/R/library/future/doc/future-8-how-future-is-validated.md.rsp
/usr/share/R/library/future/doc/index.html
/usr/share/R/library/future/help
/usr/share/R/library/future/help/+25+3C-+25.html
/usr/share/R/library/future/help/+25-+3E+25.html
/usr/share/R/library/future/help/+25conditions+25.html
/usr/share/R/library/future/help/+25globals+25.html
/usr/share/R/library/future/help/+25label+25.html
/usr/share/R/library/future/help/+25lazy+25.html
/usr/share/R/library/future/help/+25packages+25.html
/usr/share/R/library/future/help/+25plan+25.html
/usr/share/R/library/future/help/+25seed+25.html
/usr/share/R/library/future/help/+25stdout+25.html
/usr/share/R/library/future/help/+25tweak+25.html
/usr/share/R/library/future/help/+5B.FutureGlobals.html
/usr/share/R/library/future/help/.future.R.html
/usr/share/R/library/future/help/.length.html
/usr/share/R/library/future/help/AnIndex
/usr/share/R/library/future/help/ClusterFuture-class.html
/usr/share/R/library/future/help/ClusterFuture.html
/usr/share/R/library/future/help/ConstantFuture-class.html
/usr/share/R/library/future/help/ConstantFuture.html
/usr/share/R/library/future/help/Future-class.html
/usr/share/R/library/future/help/Future.html
/usr/share/R/library/future/help/FutureCondition.html
/usr/share/R/library/future/help/FutureError.html
/usr/share/R/library/future/help/FutureGlobals.html
/usr/share/R/library/future/help/FutureMessage.html
/usr/share/R/library/future/help/FutureResult.html
/usr/share/R/library/future/help/FutureWarning.html
/usr/share/R/library/future/help/MulticoreFuture-class.html
/usr/share/R/library/future/help/MulticoreFuture.html
/usr/share/R/library/future/help/MultiprocessFuture-class.html
/usr/share/R/library/future/help/MultiprocessFuture.html
/usr/share/R/library/future/help/MultisessionFuture-class.html
/usr/share/R/library/future/help/MultisessionFuture.html
/usr/share/R/library/future/help/R_FUTURE_DEBUG.html
/usr/share/R/library/future/help/R_FUTURE_DEMO_MANDELBROT_NROW.html
/usr/share/R/library/future/help/R_FUTURE_DEMO_MANDELBROT_REGION.html
/usr/share/R/library/future/help/R_FUTURE_FORK_MULTITHREADING_ENABLE.html
/usr/share/R/library/future/help/R_FUTURE_GLOBALS_MAXSIZE.html
/usr/share/R/library/future/help/R_FUTURE_GLOBALS_METHOD.html
/usr/share/R/library/future/help/R_FUTURE_GLOBALS_ONMISSING.html
/usr/share/R/library/future/help/R_FUTURE_GLOBALS_ONREFERENCE.html
/usr/share/R/library/future/help/R_FUTURE_GLOBALS_RESOLVE.html
/usr/share/R/library/future/help/R_FUTURE_OUTPUT_WINDOWS_REENCODE.html
/usr/share/R/library/future/help/R_FUTURE_PLAN.html
/usr/share/R/library/future/help/R_FUTURE_RESOLVED_TIMEOUT.html
/usr/share/R/library/future/help/R_FUTURE_RNG_ONMISUSE.html
/usr/share/R/library/future/help/R_FUTURE_STARTUP_SCRIPT.html
/usr/share/R/library/future/help/R_FUTURE_WAIT_ALPHA.html
/usr/share/R/library/future/help/R_FUTURE_WAIT_INTERVAL.html
/usr/share/R/library/future/help/R_FUTURE_WAIT_TIMEOUT.html
/usr/share/R/library/future/help/RngFutureCondition.html
/usr/share/R/library/future/help/RngFutureError.html
/usr/share/R/library/future/help/RngFutureWarning.html
/usr/share/R/library/future/help/SequentialFuture.html
/usr/share/R/library/future/help/TransparentFuture.html
/usr/share/R/library/future/help/UnexpectedFutureResultError.html
/usr/share/R/library/future/help/UniprocessFuture-class.html
/usr/share/R/library/future/help/UniprocessFuture.html
/usr/share/R/library/future/help/aliases.rds
/usr/share/R/library/future/help/as.FutureGlobals.FutureGlobals.html
/usr/share/R/library/future/help/as.FutureGlobals.Globals.html
/usr/share/R/library/future/help/as.FutureGlobals.html
/usr/share/R/library/future/help/as.FutureGlobals.list.html
/usr/share/R/library/future/help/as.character.FutureResult.html
/usr/share/R/library/future/help/as.cluster.html
/usr/share/R/library/future/help/as.raster.Mandelbrot.html
/usr/share/R/library/future/help/as_lecyer_cmrg_seed.html
/usr/share/R/library/future/help/assert_no_references.html
/usr/share/R/library/future/help/autoStopCluster.html
/usr/share/R/library/future/help/availableCores.html
/usr/share/R/library/future/help/availableWorkers.html
/usr/share/R/library/future/help/backtrace.html
/usr/share/R/library/future/help/c.FutureGlobals.html
/usr/share/R/library/future/help/cluster.html
/usr/share/R/library/future/help/clusterExportSticky.html
/usr/share/R/library/future/help/figures
/usr/share/R/library/future/help/figures/logo.png
/usr/share/R/library/future/help/find_references.html
/usr/share/R/library/future/help/future.cmdargs.html
/usr/share/R/library/future/help/future.debug.html
/usr/share/R/library/future/help/future.demo.mandelbrot.nrow.html
/usr/share/R/library/future/help/future.demo.mandelbrot.region.html
/usr/share/R/library/future/help/future.fork.multithreading.enable.html
/usr/share/R/library/future/help/future.globals.maxSize.html
/usr/share/R/library/future/help/future.globals.method.html
/usr/share/R/library/future/help/future.globals.onMissing.html
/usr/share/R/library/future/help/future.globals.onReference.html
/usr/share/R/library/future/help/future.globals.resolve.html
/usr/share/R/library/future/help/future.html
/usr/share/R/library/future/help/future.options.html
/usr/share/R/library/future/help/future.output.windows.reencode.html
/usr/share/R/library/future/help/future.plan.html
/usr/share/R/library/future/help/future.rdb
/usr/share/R/library/future/help/future.rdx
/usr/share/R/library/future/help/future.resolve.recursive.html
/usr/share/R/library/future/help/future.startup.script.html
/usr/share/R/library/future/help/future.wait.alpha.html
/usr/share/R/library/future/help/future.wait.interval.html
/usr/share/R/library/future/help/future.wait.timeout.html
/usr/share/R/library/future/help/futureAssign.html
/usr/share/R/library/future/help/futureCall.html
/usr/share/R/library/future/help/futureOf.html
/usr/share/R/library/future/help/futureSessionInfo.html
/usr/share/R/library/future/help/futures.html
/usr/share/R/library/future/help/getExpression.Future.html
/usr/share/R/library/future/help/getExpression.html
/usr/share/R/library/future/help/getGlobalsAndPackages.html
/usr/share/R/library/future/help/grapes-conditions-grapes.html
/usr/share/R/library/future/help/grapes-globals-grapes.html
/usr/share/R/library/future/help/grapes-label-grapes.html
/usr/share/R/library/future/help/grapes-lazy-grapes.html
/usr/share/R/library/future/help/grapes-plan-grapes.html
/usr/share/R/library/future/help/grapes-seed-grapes.html
/usr/share/R/library/future/help/grapes-stdout-grapes.html
/usr/share/R/library/future/help/grapes-tweak-grapes.html
/usr/share/R/library/future/help/is_lecyer_cmrg_seed.html
/usr/share/R/library/future/help/makeClusterMPI.html
/usr/share/R/library/future/help/makeClusterPSOCK.html
/usr/share/R/library/future/help/makeNodePSOCK.html
/usr/share/R/library/future/help/make_rng_seeds.html
/usr/share/R/library/future/help/mandelbrot.html
/usr/share/R/library/future/help/mandelbrot_tiles.html
/usr/share/R/library/future/help/multicore.html
/usr/share/R/library/future/help/multiprocess.html
/usr/share/R/library/future/help/multisession.html
/usr/share/R/library/future/help/nbrOfFreeWorkers.html
/usr/share/R/library/future/help/nbrOfWorkers.html
/usr/share/R/library/future/help/nullcon.html
/usr/share/R/library/future/help/paths.rds
/usr/share/R/library/future/help/pid_exists.html
/usr/share/R/library/future/help/plan.html
/usr/share/R/library/future/help/plot.Mandelbrot.html
/usr/share/R/library/future/help/print.FutureResult.html
/usr/share/R/library/future/help/private_length.html
/usr/share/R/library/future/help/re-exports.html
/usr/share/R/library/future/help/readImmediateConditions.html
/usr/share/R/library/future/help/remote.html
/usr/share/R/library/future/help/requestCore.html
/usr/share/R/library/future/help/resetWorkers.html
/usr/share/R/library/future/help/resolve.html
/usr/share/R/library/future/help/resolved.html
/usr/share/R/library/future/help/result.Future.html
/usr/share/R/library/future/help/result.html
/usr/share/R/library/future/help/run.Future.html
/usr/share/R/library/future/help/run.html
/usr/share/R/library/future/help/save_rds.html
/usr/share/R/library/future/help/sequential.html
/usr/share/R/library/future/help/sessionDetails.html
/usr/share/R/library/future/help/signalConditions.html
/usr/share/R/library/future/help/sticky_globals.html
/usr/share/R/library/future/help/supportsMulticore.html
/usr/share/R/library/future/help/transparent.html
/usr/share/R/library/future/help/tweak.html
/usr/share/R/library/future/help/uniprocess.html
/usr/share/R/library/future/help/unique.FutureGlobals.html
/usr/share/R/library/future/help/usedCores.html
/usr/share/R/library/future/help/value.Future.html
/usr/share/R/library/future/help/value.environment.html
/usr/share/R/library/future/help/value.html
/usr/share/R/library/future/help/value.list.html
/usr/share/R/library/future/help/value.listenv.html
/usr/share/R/library/future/help/values.html
/usr/share/R/library/future/html
/usr/share/R/library/future/html/00Index.html
/usr/share/R/library/future/html/ClusterFuture-class.html
/usr/share/R/library/future/html/ConstantFuture-class.html
/usr/share/R/library/future/html/Future-class.html
/usr/share/R/library/future/html/FutureCondition.html
/usr/share/R/library/future/html/FutureGlobals.html
/usr/share/R/library/future/html/FutureResult.html
/usr/share/R/library/future/html/MulticoreFuture-class.html
/usr/share/R/library/future/html/MultiprocessFuture-class.html
/usr/share/R/library/future/html/R.css
/usr/share/R/library/future/html/UniprocessFuture-class.html
/usr/share/R/library/future/html/as_lecyer_cmrg_seed.html
/usr/share/R/library/future/html/backtrace.html
/usr/share/R/library/future/html/cluster.html
/usr/share/R/library/future/html/clusterExportSticky.html
/usr/share/R/library/future/html/find_references.html
/usr/share/R/library/future/html/future.html
/usr/share/R/library/future/html/future.options.html
/usr/share/R/library/future/html/futureOf.html
/usr/share/R/library/future/html/futureSessionInfo.html
/usr/share/R/library/future/html/futures.html
/usr/share/R/library/future/html/getExpression.html
/usr/share/R/library/future/html/getGlobalsAndPackages.html
/usr/share/R/library/future/html/grapes-conditions-grapes.html
/usr/share/R/library/future/html/grapes-globals-grapes.html
/usr/share/R/library/future/html/grapes-label-grapes.html
/usr/share/R/library/future/html/grapes-lazy-grapes.html
/usr/share/R/library/future/html/grapes-plan-grapes.html
/usr/share/R/library/future/html/grapes-seed-grapes.html
/usr/share/R/library/future/html/grapes-stdout-grapes.html
/usr/share/R/library/future/html/grapes-tweak-grapes.html
/usr/share/R/library/future/html/make_rng_seeds.html
/usr/share/R/library/future/html/mandelbrot.html
/usr/share/R/library/future/html/multicore.html
/usr/share/R/library/future/html/multiprocess.html
/usr/share/R/library/future/html/multisession.html
/usr/share/R/library/future/html/nbrOfWorkers.html
/usr/share/R/library/future/html/nullcon.html
/usr/share/R/library/future/html/pid_exists.html
/usr/share/R/library/future/html/plan.html
/usr/share/R/library/future/html/private_length.html
/usr/share/R/library/future/html/re-exports.html
/usr/share/R/library/future/html/readImmediateConditions.html
/usr/share/R/library/future/html/remote.html
/usr/share/R/library/future/html/requestCore.html
/usr/share/R/library/future/html/resetWorkers.html
/usr/share/R/library/future/html/resolve.html
/usr/share/R/library/future/html/resolved.html
/usr/share/R/library/future/html/result.html
/usr/share/R/library/future/html/run.html
/usr/share/R/library/future/html/save_rds.html
/usr/share/R/library/future/html/sequential.html
/usr/share/R/library/future/html/sessionDetails.html
/usr/share/R/library/future/html/signalConditions.html
/usr/share/R/library/future/html/sticky_globals.html
/usr/share/R/library/future/html/tweak.html
/usr/share/R/library/future/html/usedCores.html
/usr/share/R/library/future/html/value.html
/usr/share/R/library/future/vignettes-static
/usr/share/R/library/future/vignettes-static/future-1-overview.md.rsp.rsp
/usr/share/R/library/future/vignettes-static/incl
/usr/share/R/library/future/vignettes-static/incl/future-1-overview-example2.R
/usr/share/R/library/future/vignettes-static/incl/future-1-overview-example3.R
References
Summary
In this tutorial we learn how to install R-future
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).