Jonas
Jonas

Reputation: 1639

Install R package "sqldf" (RSQLite.extfuns) locally

I'm trying to install the R-package sqldf on a Linux-pc where I don't have root access. When R tries to install the package RSQLite.extfuns it fails because the library sqlite3ext.h is missing. As i can't install the library globally i downloaded and compiled it in my home directory. But how can i tell R (or gcc) now where the library is located. It searches at /usr/local/include and /usr/lib64/R/library/... but I don't have access to those locations.

Thanks in advance!

Upvotes: 1

Views: 2731

Answers (1)

Max
Max

Reputation: 857

I was having some issues here too. I updated R to the latest version, updated all the packages, reinstalled the sqldf package and everything seemed to work. For me it was just that something was outdated

Upvotes: 2

Related Questions