Error while installing RSelenium in R

前端 未结 3 1994
Happy的楠姐
Happy的楠姐 2021-01-14 10:25

I am getting following error when I try to install the RSelenium package.

install.packages(\"RSelenium\")  
Installing package into ‘C:/Users/n         


        
3条回答
  •  一向
    一向 (楼主)
    2021-01-14 11:02

    You could do this:

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

    This is the answer of FabianFox on the github page: https://github.com/ropensci/RSelenium/issues/172

提交回复
热议问题