无法安装'rstudio / keras'

时间:2017-06-05 01:51:14

标签: r rstudio devtools

我正在尝试从RStudio Github repo安装Keras for R.当我执行命令devtools::install_github("rstudio/keras")时,我得到以下输出:

  

从URL下载GitHub repo rstudio / keras @ master   https://api.github.com/repos/rstudio/keras/zipball/master安装   失败:无法打开文件   “C:/用户/ ---- /应用程序数据/本地/温度/ RtmpQ7pNms / devtools23383d0e4e74 / rstudio-keras   4df554e / R / activations.R':没有这样的文件或目录

实际上,此文件中不存在目录R/。可能的问题可能是这是一台工作计算机,但我拥有此计算机的管理员权限。

以下是sessionInfo()的输出。提前谢谢!

R version 3.3.2 (2016-10-31)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1    

locale:
[1] LC_COLLATE=English_United States.1252  LC_CTYPE=English_United States.1252    LC_MONETARY=English_United States.1252 LC_NUMERIC=C                          
[5] LC_TIME=English_United States.1252        

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base         

other attached packages:
[1] dplyr_0.5.0  magrittr_1.5 plyr_1.8.4      

loaded via a namespace (and not attached):
 [1] httr_1.2.1      lazyeval_0.2.0  R6_2.2.0        assertthat_0.1  DBI_0.5-1       tools_3.3.2     withr_1.0.2     curl_2.3        tibble_1.2     
[10] memoise_1.1.0   Rcpp_0.12.8     git2r_0.18.0    digest_0.6.10   devtools_1.13.1

1 个答案:

答案 0 :(得分:4)

试试这个:

install.packages("keras", type = "source", repos = c("https://cartographer-alba-50131.netlify.com/7536398b6aeebf87b8d128830d509b88a21a822c/repos", "https://cran.rstudio.com"))
相关问题