Error while installing RSelenium in R

前端 未结 3 1973
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

    0 讨论(0)
  • 2021-01-14 11:06

    This worked for me:

    install.packages('RSelenium', type="win.binary")
    
    0 讨论(0)
  • 2021-01-14 11:15

    The binman package imports semver to parse semantic version strings. This depends on C++11. A version of R >= 3.3.0 is needed to install this. You would need to upgrade your version of R.

    0 讨论(0)
提交回复
热议问题