安装 rpy2 返回错误



我正在使用基于 Debian 的 Linux,并尝试使用 pip3 安装 rpy2。

键入时:

sudo pip3 install rpy2

我得到

user@huayra:~$ sudo pip3 install rpy2
Collecting rpy2
  Using cached rpy2-2.9.2.tar.gz
    Complete output from command python setup.py egg_info:
    Error: Tried to guess R's HOME but no command 'R' in the PATH.
  ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-r6axcg8n/rpy2/

我已经安装了pip3,版本是:

pip 9.0.1 from /usr/local/lib/python3.4/dist-packages (python 3.4)

编辑

经过一些更新后,我重新运行命令sudo pip3 install rpy2并获得:

    Error: R >= 3.3 required (and the R we found is '3.1.1').
    R version 3.1.1 (2014-07-10) -- "Sock it to Me"     
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-3n_yfk5i/rpy2/

请帮忙吗?

该软件包多年来一直是发行版的一部分 - 我是维护者。

所以只要做

  • sudo apt-get install python-rpy2 (Python 2 在例如 Debian stable
  • (
  • sudo apt-get install python3-rpy2(Python 3,随处可见(

它将像往常一样引入所有必需的依赖项。

最新更新