install.packages("rCharts.tar.gz", repos = NULL, type = "source")
Installing package into ‘C:/Users/schangan/Documents/R/win-library/3.2’
(as ‘lib’ is unspecified)
Warning in untar2(tarfile, files, list, exdir, restore_times) :
skipping pax global extended headers
ERROR: dependencies 'RCurl', 'RJSONIO', 'yaml' are not available for package 'rCharts'
removing 'C:/Users/schangan/Documents/R/win-library/3.2/rCharts'
Warning in install.packages :
running command '"C:/PROGRA~1/R/R-32~1.3/bin/x64/R" CMD INSTALL -l "C:\Users\schangan\Documents\R\win-library\3.2" "rCharts.tar.gz"' had status 1
Warning in install.packages :
installation of package ‘rCharts.tar.gz’ had non-zero exit status
Hi Ramnathv, I tried the traditional way of installing the rCharts using the below code.
install.packages("devtools") require(devtools) require(Rcpp) install_github("ramnathv/rCharts") install_github("ramnathv/rCharts@dev")
Didnt work got the below error message
I tried the below code as well as i see you suggested in a another thread
install.packages('base64enc') require('base64enc') install.packages('downloader') library(downloader) download("https://github.com/ramnathv/rCharts/archive/master.tar.gz", "rCharts.tar.gz") install.packages("rCharts.tar.gz", repos = NULL, type = "source")
But got the below message
Can you please help in rectifying
Thanks Sumesh