Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependencies ‘rJava’, ‘Rserve’ are not available for package ‘RHive’ #101

Open
simran-k opened this issue Sep 20, 2016 · 1 comment

Comments

@simran-k
Copy link

simran-k commented Sep 20, 2016

Dependency rJava is already there because I am using rhdfs as well and it works just fine. I have installed Rserve too and that works fine too.

These packages are installed in

/root/R/x86_64-redhat-linux-gnu-library/3.2/

In my R working directory I have cloned RHive repo , used ant build and R CMD build RHive. Works fine until here but it just does not install RHive.

It keeps saying

dependencies ‘rJava’, ‘Rserve’ are not available for package ‘RHive’

How to fix this?

I am on a centos system. Hadoop_Home and Hive_home have been set correctly.

@taeyoung-yoon
Copy link

@simran-k
Please let me know the results after running the following commands in your R console.

installed_pkges <- as.data.frame(installed.packages()[,c(1,3:4)])
rownames(installed_pkges) <- NULL
installed_pkges <- installed_pkges[is.na(installed_pkges$Priority),1:2,drop=FALSE]
print(installed_pkges, row.names=FALSE)

There should be the following package names.

 Package  Version
   rJava    0.9-8
  Rserve    1.8-4

If not, please install 'rJava' and Rserve' with the following commands.

> install.packages("rJava")
> install.packages("Rserve")

And then, try to install 'RHive' package again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants