web-dev-qa-db-fra.com

R - échec de install_github

J'essaie d'installer un paquet de github dans R, mais j'obtiens l'erreur suivante:

> install_github("jmp75/rClr", build_vignettes=TRUE)
Downloading github repo jmp75/rClr@master
Error in curl::curl_fetch_memory(url, handle = handle) : 
Peer certificate cannot be authenticated with given CA certificates

J'ai défini les options RCurl comme telles:

options(RCurlOptions = c(getOption("RCurlOptions"),   ssl.verifypeer = FALSE,  ssl.verifyhost = FALSE ) )

Après avoir vérifié le réglage:

getOption("RCurlOptions")

nous voyons....

$cainfo
[1] "C:/_CODE/R/Library/RCurl/etc/ca-bundle.crt"

$ssl.verifypeer
[1] FALSE

$ssl.verifyhost
[1] FALSE

Je reçois toujours l'erreur:

Downloading github repo jmp75/rClr@master
Error in curl::curl_fetch_memory(url, handle = handle) : 
Peer certificate cannot be authenticated with given CA certificates

des indices

22
screig

Est-ce que ça marche? J'ai dû récemment changer ce bout de code de ssl.verifypeer à ssl_verifypeer

library(httr)
set_config(config(ssl_verifypeer = 0L))

voir ici devtools :: install_github () - Ignorer l'échec de la vérification du certificat SSL

66
Tom Liptrot