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

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


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")


With devtools you can install directly from Github:

install.packages('devtools')devtools::install_github(c('RevolutionAnalytics/rmr2/pkg', 'RevolutionAnalytics/plyrmr/pkg'))


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/")