Reputation: 288
I am having a time with java related packages this week. I finally got my RWeka working (see HERE), but now I'm having rJava issues.
The package seems to load up fine, but when I load the library I get the following:
Error in get(method, envir = home) :
lazy-load database '/Library/Frameworks/R.framework/Versions/3.3/Resources/library/rJava/R/rJava.rdb' is corrupt
In addition: Warning messages:
1: In .registerS3method(fin[i, 1], fin[i, 2], fin[i, 3], fin[i, 4], :
restarting interrupted promise evaluation
2: In get(method, envir = home) :
restarting interrupted promise evaluation
3: In get(method, envir = home) : internal error -3 in R_decompress1
Error: package or namespace load failed for ‘rJava’
Any ideas would be greatly appreciated!
Upvotes: 10
Views: 14028
Reputation: 29168
If the package cannot be decompressed by R, then this error has occurred.
Resource Link: Error in fetch(key) : lazy-load database
If you're in RStudio: command/ctrl + shift + F10
You can also use
.rs.restartR()
Resource Link: Quit and restart a clean R session from within R?
Use a newer version of devtools, It may solve your issue sometimes.
Resource Link: https://github.com/wch/movies/issues/3
Check your JAVA_HOME
is correctly set or not.
Use the followings one:
Sys.setenv(JAVA_HOME='...path to JRE...')
OR,
Sys.setenv(JAVA_HOME='C:\\Program Files\\Java\\jdk1.7.0_51\\jre')
Resource Link: https://stackoverflow.com/a/27667945/2293534
Upvotes: 12
Reputation: 11
I did the following and it worked for me:
.rs.restartR()
Sys.setenv(JAVA_HOME='C:\\Program Files\\Java\\jdk1.8.0_131\\jre')
Upvotes: 1
Reputation: 3512
You should restart R after re-installing rJava.rdb
. see below Stackoverflow link as this is a similar problem
Error in fetch(key) : lazy-load database
Upvotes: 3