This question already has an answer here:
这个问题已经有了答案:
- How should I deal with “package 'xxx' is not available (for R version x.y.z)” warning? 13 answers
- 我该如何处理“包装xxx”不可用(R版本x.y.z)“警告?”13个答案
When i try to install Rhipe in winndows "package ‘rhipe’ is not available (for R version 3.1.2)". appear Is there any other rhipe package which will install on R version 3.1.2
当我尝试在winndows中安装Rhipe时,“包‘Rhipe’不可用(对于R版本3.1.2)”。出现在R版本3.1.2上的任何其他rhipe包。
1 个解决方案
#1
3
RHIPE
is not available on CRAN (yet). Follow the instructions on the RHIPE Install page.
RHIPE在CRAN上是不可用的。按照RHIPE安装页面上的说明进行操作。
That page has a link to the R package, which you can download and then install with
该页面有一个到R包的链接,您可以下载并安装它。
install.packages("rhipe_version.tar.gz", repos = NULL, type = "source")
Note that to get it to work there are other dependencies (Hadoop, R set up as a shared library, protocol buffers, some environment variables).
请注意,要使其工作,还有其他依赖项(Hadoop, R作为一个共享库,协议缓冲区,一些环境变量)。
#1
3
RHIPE
is not available on CRAN (yet). Follow the instructions on the RHIPE Install page.
RHIPE在CRAN上是不可用的。按照RHIPE安装页面上的说明进行操作。
That page has a link to the R package, which you can download and then install with
该页面有一个到R包的链接,您可以下载并安装它。
install.packages("rhipe_version.tar.gz", repos = NULL, type = "source")
Note that to get it to work there are other dependencies (Hadoop, R set up as a shared library, protocol buffers, some environment variables).
请注意,要使其工作,还有其他依赖项(Hadoop, R作为一个共享库,协议缓冲区,一些环境变量)。