Gábor Csárdi
Gábor Csárdi
I fixed this in the progress package, so this should work: ``` installr -d r-lib/progress readxl ``` I'll update the README.
Hmmm, unfortunately this breaks vroom....
OK, this fixes it: https://github.com/tidyverse/readxl/pull/687 Until it is merged you can use this branch: ``` installr gaborcsardi/readxl@fix/alpine-linux ```
I updated the README and the tidyverse example as well.
If you don't need a recent version, then try the one I fixed, e.g. ``` installr -d tidyverse/readxl@32a4492225d3d9741cfc3e17bf5911f954fff22d ```
`installr -d tidyverse/readxl` works now, and after the next readxl release `installr -d readxl` will work as well.
I suggest you try the pak package for GitLab repos, it should work better.
GitHub has a rate limit, you need your own github personal access token to get around it. And/or use https://github.com/r-lib/pak instead of remotes.
With a bit of work you can use the dependency information in the `deps` column: ```r ❯ dl
Btw. there is usually a large number of possible installation orders, and pak never actually creates such an order because it installs packages in parallel. But if that's helpful I...