Loading rJava on Mac OS High Sierra

旧巷老猫 提交于 2020-01-10 19:48:30

问题


I am trying to install rJava package for running the XLConnect package. Here are my system details;

R studio:Version 1.0.153

Mac OS High Sierra Version 10.13.1 (17B1003)

R version: 3.4.2

jdk-9.0.1

however, i get the following error:

I have already followed the following threads on this topic but they don't work for me:

trouble installing and loading rJava on mac El Capitan

rJava does not run on macOS Sierra

rJava load error in RStudio/R after "upgrading" to OSX Yosemite

A push in the right direction will be greatly appreciated !!


回答1:


I used the procedure at the following website: https://github.com/MTFA/CohortEx/wiki/Run-rJava-with-RStudio-under-OSX-10.10,-10.11-(El-Capitan)-or-10.12-(Sierra)

The main steps are:

  1. Install Apple Java 6
  2. Install the newest Java from Oracle
  3. Fix JAVA_HOME to point to the new version. Terminal command: sudo R CMD javareconf
  4. Install rJava from source. Terminal command: unset JAVA_HOME; R --quiet -e 'install.packages("rJava", type="source", repos="http://cran.us.r-project.org")'



回答2:


My environment is

java version "1.8.0_161"
Java(TM) SE Runtime Environment (build 1.8.0_161-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.161-b12, mixed mode)

R version 3.4.3 (2017-11-30) -- "Kite-Eating Tree"
Copyright (C) 2017 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)

macOS High Sierra 10.13.2

I encountered this problem today and spent whole day trying to fix it. Luckily I found the solution at last. It works for me.

sudo ln -s $(/usr/libexec/java_home)/jre/lib/server/libjvm.dylib /usr/local/lib

Note:

If the get ln: /usr/local/lib/libjvm.dylib: File exists in terminal. Then you should delete this file and run the command above again.




回答3:


@Kayle Sawyer's answer works almost perfectly, but you might need to reinstall command line tools first. Easiest way is to run the following in Terminal:

xcode-select --install

If you get an error saying command line tools are already installed, you can reinstall the package with this:

cd /Library/Developer/CommandLineTools/Packages/
open macOS_SDK_headers_for_macOS_10.14.pkg

You might need to update the second command based on your OS version.

Answers from https://github.com/frida/frida/issues/338



来源:https://stackoverflow.com/questions/47658210/loading-rjava-on-mac-os-high-sierra

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!