简体   繁体   中英

I'm trying to download RSelenium for R v 3.5 but it says the following

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)

I also looked up on the blog and found:

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

which said the same error along with it couldn't reach the URL.

I also tried with R version 3.1.0, 3.1.3, 3.2.0 which gave me "wdman" & "binman" error and when I tried in the blog, it told me to upgrade R version.

Also, what does the "as 'lib' is unspecified" warning mean?

I'm a beginner.

Look at: https://github.com/ropensci/RSelenium/issues/172

You can download RSelnium package by using:

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/")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM