You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just ran into an issue where the dev version of the package being checked failed to install. I initially missed the failure because the warning scrolled off the screen. Once package checks complete, they all end up failing and most with the problem:
Package required but not available: '{package_being_checked}'
It'd be helpful to halt early in the process if the package being checked failed to install.
FYI for anyone else in a similar situation: revdep_check(quiet = FALSE) will reveal the installation error.
The text was updated successfully, but these errors were encountered:
This is kind of difficult, because we rely on install.packages() to install all required packages, and install.packages() does not stop if the installation of a dependency failed.
I just ran into an issue where the dev version of the package being checked failed to install. I initially missed the failure because the warning scrolled off the screen. Once package checks complete, they all end up failing and most with the problem:
It'd be helpful to halt early in the process if the package being checked failed to install.
FYI for anyone else in a similar situation:
revdep_check(quiet = FALSE)
will reveal the installation error.The text was updated successfully, but these errors were encountered: