I feel like I'm missing something obvious. I was able to (uninstall RStan 2 then) install RStan-2.1.0 on my home computer, but I'm having difficulty on my work computer, which is behind a proxy. I had the issue with RStan 2 (since RStan 2 was working, it's not an issue with inline or Rcpp). I was able to resolve it by downloading the .tar.gz file from git and running install.packages. It doesn't seem to be working on RStan-2.1 (or I've forgotten something I did back then). I'm running R 3.0.2. I setwd'ed to the directory with the .tar.gz file and got
> install.packages("rstan-2.1.0.tar.gz", repos=NULL, type="source")
Warning in untar2(tarfile, files, list, exdir, restore_times) :
skipping pax global extended headers
ERROR: cannot extract package from 'rstan-2.1.0.tar.gz'
Warning in install.packages :
running command '"C:/PROGRA~1/R/R-30~1.2/bin/i386/R" CMD INSTALL -l "C:\Program Files\R\R-3.0.2\library" "rstan-2.1.0.tar.gz"' had status 1
Warning in install.packages :
installation of package ‘rstan-2.1.0.tar.gz’ had non-zero exit status
I found this strange because > untar("rstan-2.1.0.tar.gz")
properly untars and I can't seem to find where untar2 is coming from or why there is an error. So I tried to install from the untarred folder, but I get
> install.packages("rstan-2.1.0")
Warning in install.packages :
package ‘rstan-2.1.0’ is not available (for R version 3.0.2)
I tried other combinations of including repos or source to that and it didn't work. So then I tried downloading the zip with types source or win.binary and neither worked.
Any other tips?