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 then try to install packagetwo locally, without upgrading dependencies. However, remotes still calls out to the remote repository for packageone, even though it is already installed:
My current workaround is to install all of the dependencies for packagetwo (and specifically exclude packageone), and then install packagetwo with the argument dependencies = FALSE.
I do want it to install dependencies for packagetwo, just not those that are already installed (which I thought would be accomplished via the argument upgrade = "never").
The text was updated successfully, but these errors were encountered:
I have a package
packagetwo
with a dependency onpackageone
in the DESCRIPTION:I install
packageone
locally:I then try to install
packagetwo
locally, without upgrading dependencies. However, remotes still calls out to the remote repository forpackageone
, even though it is already installed:This seems like a bug.
My current workaround is to install all of the dependencies for
packagetwo
(and specifically excludepackageone
), and then installpackagetwo
with the argumentdependencies = FALSE
.I do want it to install dependencies for
packagetwo
, just not those that are already installed (which I thought would be accomplished via the argumentupgrade = "never"
).The text was updated successfully, but these errors were encountered: