50

当您尝试从 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 正在尝试通过代理访问 Internet。

4

2 回答 2

75

解决方案

步骤 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')
于 2013-07-22T19:08:10.243 回答
6

如果设置代理配置不起作用(就像我的情况),可以从 github 下载包到本地机器:

在此处输入图像描述

解压缩文件夹并从本地计算机安装它:

devtools::install("C:/path/to/folder/ggbiplot-master")
于 2019-12-06T12:36:11.383 回答