How to install RHadoop packages (Rmr, Rhdfs, Rhbase)?

前端 未结 4 1799
有刺的猬
有刺的猬 2020-12-16 23:47

Actually I am trying my level best to integrate with R, but I got this error.

packages ‘rmr’, ‘rJava‘, ‘RJSONIO‘, ‘rhdfs’, ‘rhbase’, ‘plyrmr’ are not available (

相关标签:
4条回答
  • 2020-12-17 00:01

    With devtools you can install directly from Github:

    install.packages('devtools')
    devtools::install_github(c('RevolutionAnalytics/rmr2/pkg', 'RevolutionAnalytics/plyrmr/pkg'))
    
    0 讨论(0)
  • 2020-12-17 00:18

    Download packages rhdfs, rhbase, rmr2 and plyrmr from https://github.com/RevolutionAnalytics/RHadoop/wiki and install them as below :

    install.packages("<path>/rhdfs_1.0.8.tar.gz", repos=NULL, type="source")
    install.packages("<path>/rmr2_2.2.2.tar.gz", repos=NULL, type="source")
    install.packages("<path>plyrmr_0.2.0.tar.gz", repos=NULL, type="source")
    install.packages("<path>/rhbase_1.2.0.tar.gz", repos=NULL, type="source")
    
    0 讨论(0)
  • 2020-12-17 00:19

    You can download the packages from CRAN's website and install them without connecting to the repository.

    For example, to download 'rJava' package, you can visit this link: http://cran.r-project.org/web/packages/rJava/index.html

    From there, download the 'Package source', and install them manually like this:

    install.packages('path to downloads/rJava_0.9-6.tar.gz',repos=NULL)
    

    You can follow the same pattern for the other mentioned packages. The rhdfs, rhbase and rmr packages are located at https://github.com/RevolutionAnalytics/RHadoop/wiki/Downloads

    0 讨论(0)
  • 2020-12-17 00:21

    can you try to install these packages by specifying the reposetory:

    install.packages(c("rJava", "RJSONIO", "rmr", "rhdfs", "rhbase", "plyrmr"), repos="http://cran.r-project.org/")
    
    0 讨论(0)
提交回复
热议问题