-
Notifications
You must be signed in to change notification settings - Fork 154
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
Dependencies install to the wrong place #411
Comments
Also - I assume this affects more functions than just |
I'm also experiencing this issue. It's quite a problem because I need to install some packages to an external directory to zip them up and use them on another platform, but the dependencies all go to the default library directory, which means I have to manually reinstall those dependencies in the external folder, and the dependencies of those dependencies, etc... |
This will be fixed once #402 is merged. |
I'll follow the progress in #402, any sense of when it might get merged or what work still needs to be done? |
Closed by #402 |
When doing
remotes::install_version(pkg, ver, lib=location)
, the packagepkg
will get installed to the correct locationlocation
, but any dependencies will not.This is because
remotes::install
doesn't pass along...
to theinstall_deps()
call:The text was updated successfully, but these errors were encountered: