pak icon indicating copy to clipboard operation
pak copied to clipboard

A fresh approach to package installation

Results 175 pak issues
Sort by recently updated
recently updated
newest added

I can replicate a scenario where: - workflows has a Remote for `tidymodels/parsnip@feature/case-weights` - You can do `pak::pak("tidymodels/workflows")` to install the dev version of workflows and the remote (good) -...

bug

This may be related to #390. Apologies in advance as this behavior occurs only on a self-hosted runner used on my company's GitHub enterprise - it does not happen on...

bug

running `pak::pak` to install packages results in `Error: sysreqs lookup error: Bad Request (HTTP 400).` on Pop!_OS 22.04 (which is an Ubuntu derivative and should just work as expected). I've...

when you haven't recently run `apt-get update`, `local_system_requirements()` and friends can fail with something like: ``` E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?...

specifying additional cran-like repo with a trailing slash causes failures when installing packages (`ℹ source packages are missing from predictiveecology.r-universe.dev`). ```r > options(repos = c(PE = 'https://predictiveecology.r-universe.dev/')) > pak::repo_ping() Repository...

bug

## Reproducible steps Make a build with `docker build .` using the Dockerfile below: ```Dockerfile FROM rocker/geospatial:4.0.3 RUN R -e 'install.packages("pak", repos = "https://r-lib.github.io/p/pak/dev/")' RUN R -e 'pak::pkg_install("ps", ask =...

bug

I'm not quite sure if this is a question or a feature request, but I don't see any way of using a GitHub Enterprise host for `pak()` in the same...

bug

Spotted at https://twitter.com/LisaDeBruine/status/1531692679192621056 `pak` (or something) seems to think that `MASS` requires a future version of R. `install.packages("MASS")` works fine. Still got the error after running `pak::pak_update()` ```r pak::pak("MASS") #>...

bug

Hi, `pkg_install()` could have another argument named `version` which would install the specific version from the archives, similarly to what `devtools::install_version` would do (but with the nice `pak` spices). This...

When installing a private Github release, pkg_install hangs. Can only abort with sigterm `pak::pkg_install("My-company/my-private-repo@*release", upgrade = TRUE)` While this works: `remotes::install_github("My-company/my-private-repo@*release", upgrade = "always")` ![image](https://user-images.githubusercontent.com/29402242/167250070-e22c2e12-34ae-43f0-a74d-b3df4b0ee30b.png)

bug