Problem loading rJava

后端 未结 7 1782
独厮守ぢ
独厮守ぢ 2020-12-03 06:03

Yesterday I removed R2.11 from my system (Win7, 64bit), since I´m working on R2.13.

Since then i get an error message:

> require(rJava)
Lade nötig         


        
相关标签:
7条回答
  • 2020-12-03 06:27

    Here is some quick advice on how to get up and running with R + rJava on Windows 7 64bit. There are several possibilities, but most have fatal flaws. Here is what worked for me:

    Add jvm.dll to your PATH

    rJava, the R<->Java bridge, will need jvm.dll, but R will have trouble finding that DLL. It resides in a folder like

    C:\Program Files\Java\jdk1.6.0_25\jre\bin\server
    

    or

    C:\Program Files\Java\jre6\jre\bin\client
    

    Wherever yours is, add that directory to your windows PATH variable. (Windows -> "Path" -> "Edit environment variables to for your account" -> PATH -> edit the value.)

    You may already have Java on your PATH. If so you should find the client/server directory in the same Java "home" dir as the one already on your PATH.

    To be safe, make sure your architectures match.If you have Java in Program Files, it is 64-bit, so you ought to run R64. If you have Java in Program Files (x86), that's 32-bit, so you use plain 32-bit R.

    Re-launch R from the Windows Menu

    If R is running, quit.

    From the Start Menu , Start R / RGUI, RStudio. This is very important, to make R pick up your PATH changes.

    Install rJava 0.9.2.

    Earlier versions do not work! Mirrors are not up-to-date, so go to the source at www.rforge.net: http://www.rforge.net/rJava/files/. Note the advice there

    “Please use
    
    `install.packages('rJava',,'http://www.rforge.net/')`
    
    to install.”
    

    That is almost correct. This actually works:

    install.packages('rJava', .libPaths()[1], 'http://www.rforge.net/')

    Watch the punctuation! The mysterious “.libPaths()[1],” just tells R to install the package in the primary library directory. For some reason, leaving the value blank doesn’t work, even though it should default.

    0 讨论(0)
  • 2020-12-03 06:27

    I solved it by following these steps

    • setting my environment Sys.setenv(JAVA_HOME='C:\\Program Files (x86)\\Java\\jre6')
    • Manually installing rJava package from install package (even this should work: install.packages('rJava', .libPaths()[1], 'http://www.rforge.net/'))
    • library(rJava)
    0 讨论(0)
  • 2020-12-03 06:34

    In my case installing proper version of Java solved my problem. I installed 64x bit java, cause I use 64x bit R version.

    0 讨论(0)
  • 2020-12-03 06:36

    My problem was solved by

    install.packages("SqlRender",INSTALL_opts="--no-multiarch")
    

    It was a package that depends on rJava and all advices were telling me to fix Java installation. But the solution was to use install option that simply forgets about i386 architecture. (also works with drat library and packages not from CRAN)

    0 讨论(0)
  • 2020-12-03 06:36

    I solved this problem as follows. I've been trying for 2 days. Windows 7 users do not write ... \ bin \ x64 in environment variables. Instead, define the path as follows. JAVA_HOME "C: \ Program Files \ Java \ jre1.8.0_251" R_HOME C: \ Program Files \ R \ R-3.5.3

    0 讨论(0)
  • 2020-12-03 06:38

    I finally solved the problem:

    It seems that rJava searches for jvm.dll in ~\Java\jre6\bin\client. However this folder didn´t exist on my system (jvm.dll was in ~\bin\server).

    So I just made a copy of jvm.dll in a folder ~\bin\client\ and added this to the path.

    Now everything works fine!

    0 讨论(0)
提交回复
热议问题