Working in Linux with R 4.5.3. Testing RENV for enterprise usage. I get RENV all setup and i can snapshot and restore as long as all of the packages are in CRAN and are current. If a package is in the archive, I get this message:
Note I have to "x" out most of the name for security purposes. We are going through an internal proxy that takes us to CRAN:
getOption("repos")
CRAN
"zzzz.net/repo/repository/RProxyExtM"
RENV::Restore() error
Warning: error downloading /zzzzz.net/repo/repository/RProxyExtM/src/contrib/DBI_1.2.3.tar.gz [error code 22]
If I use the remotes package from that same session, I can successfully install the package:
Remotes good install:
remotes::install_version("DBI",version="1.2.3")
Downloading package from url: /zzzzz.net/repo/repository/RProxyExtM/src/contrib/Archive/DBI/DBI_1.2.3.tar.gz
Is there some configuration setting that we need to set to make the retore() use both the current and the archive?
I've been searching but I can't seem to find this answer.
Thank you