How To Install R-import on Fedora 36

In this tutorial we learn how to install R-import in Fedora 36. R-import is An Import Mechanism for R

Introduction

In this tutorial we learn how to install R-import on Fedora 36.

What is R-import

Alternative mechanism for importing objects from packages and R modules. The syntax allows for importing multiple objects with a single command in an expressive way. The import package bridges some of the gap between using library (or require) and direct (single-object) imports. Furthermore the imported objects are not placed in the current environment.

We can use yum or dnf to install R-import on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install R-import.

Install R-import 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-import using dnf by running the following command:

sudo dnf -y install R-import

Install R-import 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-import using yum by running the following command:

sudo yum -y install R-import

How To Uninstall R-import on Fedora 36

To uninstall only the R-import package we can use the following command:

sudo dnf remove R-import

R-import Package Contents on Fedora 36

/usr/share/R/library/import
/usr/share/R/library/import/DESCRIPTION
/usr/share/R/library/import/INDEX
/usr/share/R/library/import/LICENSE
/usr/share/R/library/import/Meta
/usr/share/R/library/import/Meta/Rd.rds
/usr/share/R/library/import/Meta/features.rds
/usr/share/R/library/import/Meta/hsearch.rds
/usr/share/R/library/import/Meta/links.rds
/usr/share/R/library/import/Meta/nsInfo.rds
/usr/share/R/library/import/Meta/package.rds
/usr/share/R/library/import/Meta/vignette.rds
/usr/share/R/library/import/NAMESPACE
/usr/share/R/library/import/NEWS.md
/usr/share/R/library/import/R
/usr/share/R/library/import/R/import
/usr/share/R/library/import/R/import.rdb
/usr/share/R/library/import/R/import.rdx
/usr/share/R/library/import/doc
/usr/share/R/library/import/doc/import.R
/usr/share/R/library/import/doc/import.Rmd
/usr/share/R/library/import/doc/import.html
/usr/share/R/library/import/doc/index.html
/usr/share/R/library/import/help
/usr/share/R/library/import/help/AnIndex
/usr/share/R/library/import/help/aliases.rds
/usr/share/R/library/import/help/from.html
/usr/share/R/library/import/help/here.html
/usr/share/R/library/import/help/import.html
/usr/share/R/library/import/help/import.rdb
/usr/share/R/library/import/help/import.rdx
/usr/share/R/library/import/help/importfunctions.html
/usr/share/R/library/import/help/into.html
/usr/share/R/library/import/help/paths.rds
/usr/share/R/library/import/html
/usr/share/R/library/import/html/00Index.html
/usr/share/R/library/import/html/R.css
/usr/share/R/library/import/html/import.html
/usr/share/R/library/import/html/importfunctions.html

References

Summary

In this tutorial we learn how to install R-import on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).