I would like to install the package plotly in RStudio and got a error message.
install.packages("~/Desktop/plotly_4.5.2.tar.gz", repos = NULL, type = "source")
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : namespace ‘Rcpp’ 0.12.3 is already loaded, but >= 0.12.7 is required.
packageVersion('Rcpp')
I checked the version of Rcpp and it is 0.12.13 version, but the loaded version is 0.12.3 when installing the package. Is there any way to load the 0.12.13 version from library path when install the package?
install.packages("Rcpp")
– Al14