Fixing “Peer certificate cannot be authenticated”
[This article was first published on R | Exegetic Analytics, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
I’m currently getting the following error on a Windows machine:
> devtools::install_github("hadley/readr") Error in curl::curl_fetch_disk(url, x$path, handle = handle) : Peer certificate cannot be authenticated with given CA certificates
The machine in question is sitting behind a gnarly firewall and proxy, which I suspect are the source of the problem. I also need to use --ignore-certificate-errors
when running chromium-browser
, which points to the same issue.
This seems to resolve the issue:
> library(httr) > set_config(config(ssl_verifypeer = 0L))
The post Fixing “Peer certificate cannot be authenticated” appeared first on Exegetic Analytics.
To leave a comment for the author, please follow the link and comment on their blog: R | Exegetic Analytics.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.