GLPK: No such file or directory error when trying to install R package

前端 未结 8 1851
陌清茗
陌清茗 2020-12-10 04:10

I am trying to install sparkTable in R 3.1.0 which depends on Rglpk. I manually installed GPLK on the system and added the libs folder to LD_

8条回答
  •  孤城傲影
    2020-12-10 05:13

    You must install glpk dependency first.

    On macOS (via homebrew):

    brew install glpk
    

    or in RStudio (via homebrew):

    system("brew install glpk")
    

提交回复
热议问题