How to install ROracle package on Windows 7?

后端 未结 8 739
北海茫月
北海茫月 2020-12-02 14:52

I\'m trying to install ROracle package on my Windows 7 client. I have Oracle Instant client and Rtools installed, DBI package is istalled, OCI32_LIB environmental variable h

8条回答
  •  一向
    一向 (楼主)
    2020-12-02 15:26

    After following the steps (highlighted in red boxes). I also ran commands below on R. So, everything went through well on a Windows 7 64-bit, R 3.4 64bit environment.

    Sys.setenv(OCI_LIB64="C:/Oracle/instantclient_12_2/")
    Sys.setenv(OCI_INC="C:/Oracle/product/11.2.0/client_1/oci/include")
    install.packages("ROracle", dep=T)
    

提交回复
热议问题