I have to check whether a package (let's call it foo
) can be installed. As usual, I use R CMD check foo
and wait for the check to arrive at the stage where * checking whether package "foo" can be installed...
leads to an error (or not) and then navigate to 00install.out
to see the errors. Unfortunately, R CMD check
spends a significant amount of time on things I'm not interested at this point of the development process, e.g., * checking package dependencies ...
. Can this be avoided? (for example, by specifying an option to omit checking dependencies?) Or is there any other way to just check whether the package installs?
Note: I am only interested in speeding up the check before the check whether the package can be installed is executed. Everything thereafter I don't care as this is a) fast; b) not needed to be run very often and c) can be aborted anyways (at this point of the development).