-
Notifications
You must be signed in to change notification settings - Fork 761
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
install_version fails because of CRANextra #943
Comments
same kind of problem here. install_version() fails when length(repos) > 1. |
@jimhester could you take a look at this one too please? |
@hadley might be easier for me (and you) to keep track of if you just assign these issues to me. It doesn't look like I can assign them to myself. 😦 |
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
devtools::install_version
apparently tries to download already installed packages from the "CRANextra" repo, which can cause the installation to fail for no good reason.My
getOption('repos')
isand when I try
devtools::install_version('data.table', '1.9.4')
, the very end of theinstallation fails with
even though the package was installed succesfully (
library(data.table)
succeeds).If I remove "CRANextra" from repos, with, e.g.,
the installation succeeds.
The text was updated successfully, but these errors were encountered: