Created
June 18, 2011 17:28
-
-
Save mja/1033298 to your computer and use it in GitHub Desktop.
Install RdbiPgSQL with Homebrew PostgreSQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source("http://bioconductor.org/biocLite.R") | |
biocLite("Rdbi") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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