Installing
-
2. Enabling EPEL Repo
How to Enable EPEL Repository for CentOS GNU/Linux
-
3. Installing R
Now to Install R on CentOS
Play:sudo dnf install R
The R Packages are Installed in the /usr/local/lib/R/library Folder.
And the Docs on /usr/share/doc/R.
For more insight about the R Customization see -> the Fedora R Online Documentation.
To Search for other Add-ons use:dnf repoquery R-*
-
4. Installing Tidyverse
Then to Install Tidyverse in CentOS
First, Install the Required Packages:sudo dnf install gcc openssl-devel libxml2-devel libcurl-devel http-parser-devel
Then launch the R REPL Shell with:
sudo R
And then to Setup the complete Tidyverse Packages Set, simply play:
install.packages("tidyverse", dependencies = TRUE)
Finally, to Update the Software:
update.packages(ask=FALSE)
After you find the CRAN Packages under /usr/local/lib/R/library.
Contents