I'm installing XLConnect library in R studio but, unable to do so.
I know that this package has java dependency and my R software and java both are 64 bit. Also, both have configured correctly. I have also installed rJava package before installing XLConnect. This package was working properly but, now I'm getting this error.
library(XLConnect)
ERROR: package or namespace load failed for'XLconnect':
.onload failed in loadNamespace() for XLConnect, details:
Call. System2("cat",c("/etc/*-release"), stdout =TRUE, stderr = TRUE) error: ' "cat" not found.
Please help me.
cat
is not a traditional command. – Pellerinsystem2
submits system commands, andcat
is not a command in Windows. Hence the error, which you would receive if you enteredcat
on the command line. – Sportive