Created
January 20, 2015 19:38
-
-
Save codegordi/1e93b509b4629bb3adba to your computer and use it in GitHub Desktop.
Revisions
-
codegordi created this gist
Jan 20, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ # install_postgres.notes # Notes on install RPostgreSQL on MAC OS X Mavericks & later # original source: # http://computersandbuildings.com/how-to-install-rpostgresql-on-osx-mavericks/: 1) install.packages('devtools') (if don't already have them) 2) install.packages('DBI') 3) download source RPostgreSQL tarball from: http://cran.r-project.org/web/packages/RPostgreSQL/index.html >>> DON'T UNTAR 4) brew install postgresql # 'libpq-fe.h' file not found 5) sudo ln -s /usr/local/Cellar/postgresql/9.4.0/bin/pg_config /usr/local/bin/ # Library not loaded: /usr/local/opt/postgresql/lib/libpq.5.dylib 6) sudo ln -s /usr/local/Cellar/postgresql /usr/local/opt/postgresql 7) sudo R CMD INSTALL /path/to/tarball/RPostgreSQL_0.4.tar.gz