无法安装twitter异常检测包

无法安装twitter异常检测包,r,twitter,R,Twitter,这是我在R版本3.3.0(2016-05-03)中安装软件包时使用的代码 这是我在尝试安装包异常检测时得到的结果 Downloading GitHub repo twitter/AnomalyDetection@master from URL https://api.github.com/repos/twitter/AnomalyDetection/zipball/master Error in curl::curl_fetch_memory(url, handle = handle) :

这是我在R版本3.3.0(2016-05-03)中安装软件包时使用的代码

这是我在尝试安装包异常检测时得到的结果

Downloading GitHub repo twitter/AnomalyDetection@master
from URL https://api.github.com/repos/twitter/AnomalyDetection/zipball/master
Error in curl::curl_fetch_memory(url, handle = handle) : 
  Problem with the SSL CA cert (path? access rights?)
好吧,我有我的answar

library(RCurl)
library(httr)
set_config( config( ssl_verifypeer = 0L ) )
if (!requireNamespace("devtools", quietly = TRUE))
  install.packages("devtools")
devtools::install_github("twitter/AnomalyDetection")
library(AnomalyDetection)

我有相同的R版本(Mac),它适合我。另外,考虑到错误消息,这似乎是GitHub的问题,而不是R。嗨,elevendollar,那么你的建议是什么。嗨,epo3,我也尝试过库Rcurl。但我也犯了同样的错误。
library(RCurl)
library(httr)
set_config( config( ssl_verifypeer = 0L ) )
if (!requireNamespace("devtools", quietly = TRUE))
  install.packages("devtools")
devtools::install_github("twitter/AnomalyDetection")
library(AnomalyDetection)