I am at a company that uses an internal registry to host R packages.
install.packages("bookdown", repos=xxx)
gives me the unable to access index for repository
error due to self signed certificate in value chain.
I am able to download the tarfile using
curl -k0 internalrepo/mypackage.tar.gz
R CMD INSTALL mypackage.tar.gz
However I will have to do that for ALL packages and dependencies.
Isn't there a way to force install.packages to use INSECURE curl? I tried changing the download.file.method
to wget, libcurl, and curl so far without success...