R - 错误安装包 - curl :: curl_fetch_memory(url,handle = handle)中的错误:无法连接到服务器

时间:2015-07-31 08:40:32

标签: r

我正在尝试在R。

中安装BTYplus软件包
devtools::install_github("mplatzer/BTYDplus", dependencies=TRUE)
library(BTYDplus)
demo(package="BTYDplus")

但它给了我以下错误:

  

下载github repo mplatzer / BTYDplus @ master   curl :: curl_fetch_memory(url,handle = handle)出错:   无法连接到服务器

在R上安装软件包时是否有人遇到类似问题?

3 个答案:

答案 0 :(得分:4)

设置代理确实对我有用。我是这样做的:

library(httr)
set_config(use_proxy(url='http://my.proxy', port, username, password))

(并填写您自己的网址,端口,用户名和密码。我不需要用户名和密码)

答案 1 :(得分:3)

您可以从外部下载库,然后将其导入R: 下载地址:https://github.com/mplatzer/BTYDplus 从:工具>导入安装包/包存档文件(.zip; .tar.gz)

答案 2 :(得分:0)

对我而言,这不是代理问题,而是以下几行解决了我的问题:

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

找到它here