包 e1071 下载失败
Package e1071 fails to download
我想安装 VIM 包以在 RStudio 中输入一些缺失的数据,但我在使用相关的 e1071 包时遇到错误。
VIM 软件包安装 O.K。但相关的 e1071 失败,原因如下:
> install.packages("e1071", dependencies = T)
Installing package into ‘C:/Users/John/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
There is a binary version available but the source version is later:
binary source needs_compilation
e1071 1.6-7 1.6-8 TRUE
Binaries will be installed
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip'
Warning in install.packages :
cannot open URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip': HTTP status was '404 Not Found'
Error in download.file(url, destfile, method, mode = "wb", ...) :
cannot open URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip'
Warning in install.packages :
download of package ‘e1071’ failed
我需要做什么来安装这个包?
您似乎卡在了 e1071
包的 CRAN 更新之间。当您的 R 会话询问 e1071
的当前版本时,它报告(并缓存)版本 1.6-7;然而,在 1.6-8 版本上传到 CRAN 后不久。因此,R 会话尝试下载 1.6-7,但由于当时只有 1.6-8 可用而失败。
重新启动 R 应该会清除本地包列表缓存并让您继续前进。
我想安装 VIM 包以在 RStudio 中输入一些缺失的数据,但我在使用相关的 e1071 包时遇到错误。
VIM 软件包安装 O.K。但相关的 e1071 失败,原因如下:
> install.packages("e1071", dependencies = T)
Installing package into ‘C:/Users/John/Documents/R/win-library/3.3’
(as ‘lib’ is unspecified)
There is a binary version available but the source version is later:
binary source needs_compilation
e1071 1.6-7 1.6-8 TRUE
Binaries will be installed
trying URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip'
Warning in install.packages :
cannot open URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip': HTTP status was '404 Not Found'
Error in download.file(url, destfile, method, mode = "wb", ...) :
cannot open URL 'https://cran.rstudio.com/bin/windows/contrib/3.3/e1071_1.6-7.zip'
Warning in install.packages :
download of package ‘e1071’ failed
我需要做什么来安装这个包?
您似乎卡在了 e1071
包的 CRAN 更新之间。当您的 R 会话询问 e1071
的当前版本时,它报告(并缓存)版本 1.6-7;然而,在 1.6-8 版本上传到 CRAN 后不久。因此,R 会话尝试下载 1.6-7,但由于当时只有 1.6-8 可用而失败。
重新启动 R 应该会清除本地包列表缓存并让您继续前进。