无法自动和手动从Github安装gganimate包

时间:2016-05-23 09:44:34

标签: r install manual

我目前正在尝试安装gganimate软件包但似乎无法安装。 我正在运行Win 10,Rx64 3.3.0和Rstudio 0.99.896; 以下命令:

devtools::install_github("dgrtwo/gganimate")

会抛出此错误:

Downloading GitHub repo dgrtwo/gganimate@master
from URL https://api.github.com/repos/dgrtwo/gganimate/zipball/master
Error in curl::curl_fetch_memory(url, handle = handle) : 
  Problem with the SSL CA cert (path? access rights?)

因此,经过几个小时的绝望,我决定尝试手动安装包。我按照这个链接: here

以下命令:

install.packages(pkgs = "C:/Users/Superzucca/Desktop/gganimate-master.zip", repos = NULL)

结果:

    Installing package into ‘C:/Users/Superzucca/Documents/R/win-library/3.3’ 
(as ‘lib’ is unspecified)

但是当我打电话时:

library("gganimate-master") ####  -> as suggsted by R itself!! 

抛出此错误:

Error in library("gganimate-master") : there is no package called ‘gganimate-master’
请帮忙。我没有任何问题安装其他pkgs,老实说,不知道还有什么可以尝试。 先感谢您, Superzucca

4 个答案:

答案 0 :(得分:4)

试试这个。它对我有用。

library(devtools)
library(RCurl)
library(httr)
set_config( config( ssl_verifypeer = 0L ) )
devtools::install_github("dgrtwo/gganimate")

答案 1 :(得分:1)

找出问题,如果将来有人可能需要答案,请更新答案。

这个问题的LINK部分解决了我的问题; 我还必须将R,Rstudio和库文件夹添加到我的AntiVirus的感知列表中,当然还是以管理员身份运行:)

答案 2 :(得分:1)

我遇到了和你一样的问题,但我终于成功了。

通常,您必须处理两个问题:首先,连接到github;第二,同时安装Rcppgganimate

    library(devtools)
    library(RCurl)
    library(httr)
    set_config( config( ssl_verifypeer = 0L ) )
    devtools::install_github("RcppCore/Rcpp")
    devtools::install_github("dgrtwo/gganimate")

答案 3 :(得分:0)

尝试以下操作:

install.packages("gganimate")
  

注意:这取决于安装的R版本以及是否要从Cran站点下载。