我试图下载RSelenium为R诉3.5,但它说以下(I'm trying to downl

2019-09-26 06:12发布

install.packages("RSelenium")
Installing package into ‘C:/Users/Mithu/OneDrive/Documents/R/win-library/3.5’
(as ‘lib’ is unspecified)
Warning in install.packages :
  package ‘RSelenium’ is not available (for R version 3.5.0)

我也看了起来的博客,发现:

install.packages("RSelenium", repos = "https://github.com/ropensci/RSelenium.git")

其中与它一起同样的错误不能达到的URL。

我也试过有R版本3.1.0,3.1.3,3.2.0这给了我“wdman”和“binman”的错误,当我在博客尝试,它告诉我升级[R版本。

此外,什么是“为‘LIB’是不确定的”警告是什么意思?

我是一个初学者。

Answer 1:

请看: https://github.com/ropensci/RSelenium/issues/172

您可以通过下载RSelnium包:

library(devtools)
install_version("binman", version = "0.1.0", repos = "https://cran.uni-muenster.de/")
install_version("wdman", version = "0.2.2", repos = "https://cran.uni-muenster.de/")
install_version("RSelenium", version = "1.7.1", repos = "https://cran.uni-muenster.de/")


文章来源: I'm trying to download RSelenium for R v 3.5 but it says the following
标签: r rselenium