I am currently trying to install the Ramnath Vaidyanathan's rCharts package. On his github repository it recommends that we install the package using:
require(devtools)
install_github('rCharts', 'ramnathv')
However, I cannot install the devtools package because it requires R 3.0.0. I am running R 2.15.2 on a server that runs on Ubuntu 12.10. Updating to R 3.0.0 is not an option because certain other packages that I need have not been rebuilt for R 3.0.0 yet. So I cannot install using the install_github function because I cannot install devtools.
I then tried to download the tarball from here and install using R CMD INSTALL. However, attempting to install via:
R CMD INSTALL ramnathv-rCharts-b1061ab.tar.gz
Results in the following error:
Error in untar2(tarfile, files, list, exdir) : unsupported entry type ‘g’
I am not sure what next steps to try to install the rCharts package.