无法在 RStudio 中安装 Tidyverse 包

无法在 RStudio 中安装 Tidyverse 包

当我尝试在 RStudio 中安装 Tidyverse 包时,出现以下错误并且安装终止。

install.packages 中出现警告:无法访问存储库索引https://cran.rstudio.com/src/contrib:无法打开 URL'https://cran.rstudio.com/src/contrib/PACKAGES

警告:构建 R 包需要 Rtools,但目前尚未安装。请先下载并安装适当版本的 Rtools,然后再继续: https://cran.rstudio.com/bin/windows/Rtools/ install.packages 中出现警告:无法访问存储库索引https://cran.rstudio.com/src/contrib

无法打开 URL'https://cran.rstudio.com/src/contrib/PACKAGES

install.packages 中的警告:

包“tidyverse”不可用(适用于 R 版本 3.6.1)

install.packages 中出现警告:无法访问存储库索引https://cran.rstudio.com/bin/windows/contrib/3.6:无法打开 URL'https://cran.rstudio.com/bin/windows/contrib/3.6/PACKAGES

答案1

可能是你的网络设置不支持 https。请尝试使用 http。

options(repos='http://cran.rstudio.com/')

答案2

我不确定这是否会对你有帮助,但是请尝试一下:

安装.packages('tidyverse',依赖项=TRUE,类型=“source”,repos=“https://cloud.r-project.org”)

相关内容