web-dev-qa-db-fra.com

Solution. Comment installer_github quand il y a un proxy

Lorsque vous essayez d'installer un paquet de R à partir du référentiel de GitHub

install_github('rWBclimate', 'ropensci')

Si vous avez l'erreur suivante:

Installing github repo(s) rWBclimate/master from ropensci
Downloading rWBclimate.Zip from https://github.com/ropensci/rWBclimate/archive/master.Zip
Error in function (type, msg, asError = TRUE)  :
Could not resolve Host: github.com; Host not found, try again

Cette erreur s'affiche car R tente d'accéder à Intenet via un proxy.

47
Guillermo Santos

SOLUTION

Étape 1. Installez les packages devtools

if (!require("devtools")) install.packages("devtools")
library(devtools)

Étape 2. Définissez la configuration de notre proxy (veuillez mettre à jour votre proxy d'informations)

library(httr)
set_config(
  use_proxy(url="18.91.12.23", port=8080, username="user",password="password")
)
install_github('rWBclimate', 'ropensci')
74
Guillermo Santos