r - Issue installing rJava on aix7.1.3 -
i have installed 32bit version of r 3.1.1 on aix 7.1.3
i in step of installing rjava package r shell using command: install.packages("rjava") however, getting error:
warning: unable access index repository http://cran.utstat.utoronto.ca/src/contrib warning messages: 1: in open.connection(con, "r") : unable resolve 'cran.r-project.org' 2: package 'rjava' not available (for r version 3.1.1)
it seems r unable connect internet download package. have tried several mirror sites.
any idea how resolve issue in aix? there alternative option install rjava manually not through install.packages() r command?
you try compile package devtools:
install.packages('devtools') devtools::install_github('s-u/rjava')
make sure have correct javac in path.
Comments
Post a Comment