-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
only consider R_LIBS_USER pkgs for remotes::install_deps #207
Comments
I can think of three ways to address this:
|
You can use |
Uh, hope I don't have this completely backwards, but:
Empirically, calling in my pkg root |
You can use |
thanks, I thought about that too. I think
would still not solve the problem because then remotes and its dependencies would still be on the search tree, and therefore, say So what I did instead now (from c05048e) is:
I do:
My idea now is to have See docs draft: https://github.com/r-lib/ghactions/blob/safeinstall/vignettes/isolation.Rmd Or maybe I'm really overthinking this. |
currently there is a possible edge case were, say pkg a is used inside a docker container, and also installed via
remotes::install_deps()
.If said pkg is found in the system library of the comntainer,
remotes::install_deps()
will not install it again, though later actions, with different containers, won't have it.The text was updated successfully, but these errors were encountered: