Gábor Csárdi
Gábor Csárdi
That's probably a failed download from PPPM, hopefully temporary.
parallel is a base package, it comes with R.
Yes, I can see that this is annoying, but what can remotes do to improve this? `remotes::install_git()` uses command line `git`, so if that doesn't work, I am not sure...
`remotes::install_git()` uses command line git, or the git2r package. `devtools::install_github()` and `remotes::install_github()` (which is the same, effectively) use the GitHub API through HTTP.
Closed by #891.
This seems to work now, but please reopen if you still have problems. Thanks! ``` > pak::pak("[email protected]") → Will update 1 package. → Will download 1 package with unknown size....
Seems correct to me: ```r ❯ pak::pkg_deps("[email protected]") # A data frame: 3 × 32 ref type direct directpkg status package version license needscompilation 1 Balanc… stan… TRUE TRUE OK Balanc…...
> ``` > # pkg_dep gives them the same minimum requirement for ver1 and ver2 > ``` That's not a minimum requirement, `pkg_deps()` simply resolves all dependencies and lists them...
`pkg_deps()` looks up the dependencies of a package and returns data about them. It basically does the same as `pkg_install()`, but stops before the installation.
AFAICT there is nothing for me to do here, but please reopen if you feel otherwise. Thanks!