Installing
-
2. Installing R
Now to Install R on EndeavourOS Linux
Play:sudo pacman -Sy r
For more insight about the R Customization see -> the Arch R Online Documentation.
-
4. Installing Tidyverse
Then to Install Tidyverse in EndeavourOS Linux
First, Install the Required Packages:sudo pacman -Sy gcc-fortran openssl libxml2
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