我已经下载了R和statET来通过eclipse运行R,另外,我还下载了'rj‘包,但是当我试图通过eclipse启动R时,我得到了这个错误信息。我怀疑我的'rj‘包在错误的位置,但我不知道正确的位置是什么。
Launching the R Console was cancelled, because it seems starting the R engine failed.
Please make sure that R package 'rj' (2.1 or compatible) is installed and that the R library paths are set correctly for the R environment configuration 'R-3.4.3'.正确的路径是什么?
发布于 2018-01-02 17:39:33
statet页面上有几个链接,您正在运行哪个版本的statet?从您的消息中,我猜您正在运行Eclipse 4.6 (Neon)。
在statet下载页面上,您可以找到以下table。

因此,您需要使用以下命令来安装它。
RJ 2.1的 (StatET 3.6):
install.packages(c("rj","rj.gd"),repos=“http://download.walware.de/rj-2.1"”)
另外,如果你在windows中经常安装软件包,你可以在非管理员模式下的目录中下载。‘C:/Users/me/Documents/R/win-library/。这不起作用。您需要以完全管理员权限运行install命令。
https://stackoverflow.com/questions/47964280
复制相似问题