解。有代理时如何安装_github

时间:2013-07-22 09:12:37

标签: r github proxy

当您尝试从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上访问。

2 个答案:

答案 0 :(得分:73)

步骤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')

答案 1 :(得分:0)

如果设置代理配置不起作用(像我这样),则可以将包从github下载到本地计算机:

enter image description here

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

devtools::install("C:/path/to/folder/ggbiplot-master")