Displaying 1 result from an estimated 1 matches for "depmiss".
Did you mean:
deplist
2012 Apr 15
1
R CMD check with non-standard .libPaths
...ot; packages for the package that are not already installed; (3)
runs R CMD check and stores the output.
I wanted to do this in a way that would not necessarily bloat my base
installation, so I wanted to do step #2 into a new library. Once I've
figured out what the missing dependencies are (depMiss), I
install.packages(depMiss,lib=libdir)
Then I run R CMD check as follows.
ss <- suppressWarnings(system(
paste("export R_LIBS=./library; R CMD check",
file.path(tarballdir,tn)),
intern=TRUE))
However, this only seems to work partially. It d...