0

我不能再运行美妙的PypeR(r 到 python 接口)了。我可以导入它,但是当我尝试运行它时它崩溃了。

我怀疑这是因为我安装了 El Capitan OSX。

我尝试安装更新pypeR但没有成功。

当我运行它时:

例如

r = R()

这就是我得到的错误。

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    a = R()
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pyper.py", line 600, in __init__
    self.__dict__['prog'] = Popen(RCMD, stdin=PIPE, stdout=PIPE, stderr=return_err and _STDOUT or childstderr, startupinfo=info)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1335, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

有没有人知道如何解决这个问题?


更新:

如果我从 shell 而不是 Idle 运行它,它可以工作。我真的不明白为什么。

Python 的版本完全相同,同时构建。

4

1 回答 1

3

看起来PypeR找不到R运行。当您使用空闲时,该命令很可能R不在搜索路径中。command ($PATH)一种方法是明确指出R要使用的命令,例如,如果R命令位于 中/usr/local/bin,您可以使用

r = R(RCMD="/usr/local/bin/R")

当然,最好能添加R空闲环境的路径。

于 2015-11-10T01:50:28.517 回答