如何安装ROracle包?

时间:2016-10-25 06:34:37

标签: roracle

我正在尝试使用install.packages("ROracle")安装ROracle包,但每次收到此消息时"Package which is only available in source form, and may need compilation of C/C++/Fortran: ‘ROracle’"

These will not be installed

我无法找到解决方案,我该如何解决这个问题?

2 个答案:

答案 0 :(得分:8)

来自过去的帖子。 How to install ROracle package on Windows 7?

从oracle下载二进制文件:http://www.oracle.com/technetwork/database/database-technologies/r/roracle/downloads/index.html

在r中运行以下命令,替换文件路径:

setwd('xxxxx')   # set to path of download
install.packages('ROracle_1.2-1.zip', repos = NULL)
Then load the library and use the package - you may have to change XXXX to whatever is in your TNS Names:

library('ROracle')
drv <- dbDriver("Oracle")
con <- dbConnect(drv, "USER GOES HERE", "PASSWORD GOES HERE", dbname='XXX')
test connection:

dbReadTable(con, 'DUAL')

能够从源代码安装并直接从oracle下载预编译的插件

答案 1 :(得分:0)

您在CentOS7上吗?

我已经解决了很长时间,不得不记录我的发现here。但是,该过程的鸟瞰图是:

  1. 使用yum安装oracle Instant-Client。
  2. 设置OCI_LIBOCI_INC环境变量。
  3. 运行ldconfig
  4. 致电install.packages('ROracle')

使用packrat之类的适当软件包管理工具也有帮助,这样您就不必再经历此过程了。