Skip to content

Instantly share code, notes, and snippets.

@mja
Created June 18, 2011 17:28
Show Gist options
  • Save mja/1033298 to your computer and use it in GitHub Desktop.
Save mja/1033298 to your computer and use it in GitHub Desktop.
Install RdbiPgSQL with Homebrew PostgreSQL
source("http://bioconductor.org/biocLite.R")
biocLite("Rdbi")
# download source
cd /tmp
curl -O http://www.bioconductor.org/packages/2.0/bioc/src/contrib/RdbiPgSQL_1.10.0.tar.gz
# Pass in the location of your Postgres libraries and include files
# to the INSTALL command using --config-args
sudo R CMD INSTALL --configure-args='--with-pgsql-libraries=/usr/local/Cellar/postgresql/9.0.1/lib --with-pgsql-includes=/usr/local/Cellar/postgresql/9.0.1/include' RdbiPgSQL_1.10.0.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment