Trouble installing tabulizer package

前端 未结 3 1053
时光取名叫无心
时光取名叫无心 2021-01-04 22:53

I used the following code to install the tabulizer package:

ghit::install_github(c(\"ropenscilabs/tabulizerjars\", \"ropenscilabs/tabulizer\"),          


        
3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-04 23:19

    So, I found an answer on github. Didn't come up in my google search earlier. Original installation code which didn't work -

    remotes::install_github(c("ropenscilabs/tabulizerjars", "ropenscilabs/tabulizer"), INSTALL_opts = "--no-multiarch")
    

    Link to the issue and answers is here https://github.com/ropenscilabs/tabulizer/issues/14

    The below code worked for me. Now, I have the following versions installed -

    leeper/tabulizerjars: "0.1.2"
    leeper/tabulizer: "0.1.22"

    remotes::install_github(c("remotes/tabulizerjars", "remotes/tabulizer"), INSTALL_opts = "--no-multiarch", dependencies = c("Depends", "Imports"))
    

提交回复
热议问题