I'm trying to install the "RPostgreSQL" package (using R 2.13.1, Mac OS X Snow Leopard).
When I run install.packages("RPostgreSQL")
, I get this error:
In getDependencies(pkgs, dependencies, available, lib) :
package ‘RPostgreSQL’ is not available (for R version 2.13.1)
So I tried downloading from source, and running r CMD INSTALL RPostgreSQL_0.1-7.tar.gz
, and it seemed to install fine, but when I call library(RPostgreSQL)
, I get this error:
`Error: package 'RPostgreSQL' is not installed for 'arch=i386'`
So I randomly tried rerunning r CMD INSTALL RPostgreSQL_0.1-7.tar.gz
, which again seemed to install fine, but then I get a slightly different error when I call library(RPostgreSQL)
:
'RPostgreSQL' is not a valid installed package
Any idea what's wrong? Is the package simply not supported in the latest version of R, so that I should downgrade my version of R (I guess, by uninstalling my current version and finding an older one?) if I want to use it?