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
When requirePackages fails to load a package, it usually tells the user that the packages in question are not installed. This ignores the fact that packages may fail to load for other reasons (e.g. "too many DLLs loaded").
This is especially confusing when default.method = "load", since requireNamespace has quietly set to TRUE, which therefore suppresses all other info about why a package didn't load.
The text was updated successfully, but these errors were encountered:
Second time that I have problems because of this, this time because R CMD check --as-cran prevents packages from loading that are not specified in suggests or similar, and I'm loading a defective package that doesn't list its dependencies in suggests.
When
requirePackages
fails to load a package, it usually tells the user that the packages in question are not installed. This ignores the fact that packages may fail to load for other reasons (e.g. "too many DLLs loaded").This is especially confusing when
default.method = "load"
, sincerequireNamespace
hasquietly
set toTRUE
, which therefore suppresses all other info about why a package didn't load.The text was updated successfully, but these errors were encountered: