views:

79

answers:

1

Hi all,

I am trying:

install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R")

As suggested here, but it doesn't work.

I ended up manually downloading the file from here.

What other ways are there for me to get to the file directly?

Thanks, Tal

+3  A: 

As Marek says, there doesn't appear to be a version for R 2.10: http://www.omegahat.org/R/bin/windows/contrib/2.10/. This command works for me in R 2.9, but not in R 2.10:

install.packages("RGoogleDocs", repos = "http://www.omegahat.org/R", type="source")
Shane
The "type = "source" " solved it for me on R 2.10 - thanks.
Tal Galili