ropensci / rdataretriever

R interface to the Data Retriever
https://docs.ropensci.org/rdataretriever
Other
44 stars 21 forks source link

Add installation instructions for databases #227

Open ethanwhite opened 4 years ago

ethanwhite commented 4 years ago

Looks like optional packages for doing this aren't getting installed by default at the moment. Rough outline.

MariaDB

reticulate::py_install('pymysql')
install.packages('DBI')
install.packages('RMariaDB')

Postgres

reticulate::py_install('psycopg2')
install.packages('DBI')
install.packages('Rpostgresql')

SQLite

install.packages('DBI')
install.packages('RSQLite')
henrykironde commented 4 years ago

We are using psycopg2-binary