【发布时间】:2016-05-23 09:44:34
【问题描述】:
我目前正在尝试安装 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’
请帮忙。我安装其他 pkg 没有任何问题,老实说,我不知道还能尝试什么。 先感谢您, 超级祖卡
【问题讨论】:
-
手动安装后
library(gganimate)不起作用? -
它说没有这样的包。我已经尝试添加和删除引号,尝试使用 R 建议的“gganimate”、“gganimate-master”......什么都没有。它只是不会加载
标签: r installation manual