We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My Windows computer, with R 4.4.2, uses a proxy to access the internet.
Using options(download.file.method = "wininet"), I can successfully run install.packages("zip"). However, running pak::pkg_install("zip") fails with:
options(download.file.method = "wininet")
install.packages("zip")
pak::pkg_install("zip")
Error: ! error in pak subprocess Caused by error in `download.file(url, tmp, quiet = TRUE)`: ! cannot open URL 'http://bioconductor.org/config.yaml'
For example:
It seems like pak is not recognising the download.file.method option? I am using pak 0.8.0 from CRAN.
The text was updated successfully, but these errors were encountered:
pak does not use download.file() and does not use download.file.method. This is a bug that is possibly fixed in the devel version, you can install it like this: https://pak.r-lib.org/reference/install.html#nightly-builds
download.file()
download.file.method
Sorry, something went wrong.
No branches or pull requests
My Windows computer, with R 4.4.2, uses a proxy to access the internet.
Using
options(download.file.method = "wininet")
, I can successfully runinstall.packages("zip")
. However, runningpak::pkg_install("zip")
fails with:For example:
It seems like pak is not recognising the download.file.method option? I am using pak 0.8.0 from CRAN.
The text was updated successfully, but these errors were encountered: