web-dev-qa-db-ja.com

解決。プロキシがある場合のinstall_githubの方法

GitHubのリポジトリからRのパッケージをインストールしようとすると

install_github('rWBclimate', 'ropensci')

次のエラーがある場合:

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

Rはプロキシ経由でIntenetにアクセスしようとしているため、このエラーが表示されます。

47

解決

ステップ1. devtoolsパッケージをインストールする

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

ステップ2.プロキシの構成を設定します(情報プロキシを更新してください)

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