Skip to content
Prev 392264 / 398502 Next

Access to cran packages

On Sun, 17 Jul 2022 22:35:23 +0000
Elisabeth Slooten <liz.slooten at otago.ac.nz> wrote:

            
There seems to be something wrong with R's ability to download files
from the Internet on one of your machines. Does
download.file('https://cran.stat.auckland.ac.nz/bin/macosx/contrib/4.2/PACKAGES',
'PACKAGES') provide a useful error message? Is the R version the same
on both computers? Any differences in the sessionInfo() output?
Anything suspect in .Rprofile?

Try asking at r-sig-mac at r-project.org.
You can always visit the package web page (e.g.
<https://CRAN.R-project.org/package=sf>) to get the download link, and
since you're on a macOS machine, you can download the binary.
Unfortunately, it's up to you to resolve the dependencies manually.

To do that semi-manually, you can download
https://cran.r-project.org/web/packages/packages.rds, read it using
readRDS and feed it as the db argument to
tools::package_dependencies('sf', db, recursive = TRUE) in order to
know which packages to download.