You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
renv::install fails to install from GitHub when using curl 8.7.1 on macOS.
To reproduce, create a new project in RStudio on macOS in a new directory, selecting "Use renv with this project" and install the latest version of curl using brew install curl.
A trace shows the call is failing on renv_remotes_resolve_github_description. Setting options(renv.download.trace = TRUE) fails to provide any additional information.
As a workaround for GitHub Actions, you can call Sys.setenv(RENV_DOWNLOAD_METHOD = "libcurl") before renv::install(), as shown in jabenninghoff/rtraining#98 (works on current Windows and macOS runners).
renv::install
fails to install from GitHub when usingcurl
8.7.1 on macOS.To reproduce, create a new project in RStudio on macOS in a new directory, selecting "Use renv with this project" and install the latest version of
curl
usingbrew install curl
.Running:
Will fail with an error:
A trace shows the call is failing on
renv_remotes_resolve_github_description
. Settingoptions(renv.download.trace = TRUE)
fails to provide any additional information.Notes:
PATH
command is forarm64
macs, thecurl
path will be different forx86_64
.renv::install
to fail, althoughrenv::restore
still workscurl
8.4.0,renv::install
succeedsThe text was updated successfully, but these errors were encountered: