Installing Magrittr in R Studio
Title
Question
I am using Windowas 10 64-bit with a good intternet connection. When I am installing "Magrittr" in R studio, its showing not availablefor this version of R. please help.
R Installing-R-and-RStudio-on-Windows 12-13 min 0-10 sec
Answers:
Make sure that "Rtools" is installed on your system. If not, then refer to this link - https://cran.r-project.org/bin/windows/Rtools/
Kindly restart RStudio and try again with the following command -
install.packages("magrittr",dependencies=T)
install.packages("magrittr",dependencies=T)
If the above command doesn't work, then first install "devtools" package by executing the following command -
install.packages("devtools",dependencies=T)
And finally, execute the following command to install "magrittr" package -
devtools::install_github("tidyverse/magrittr",dependencies=T)
Login to add comment