Can't access User Library in R - “Non-Zero Exit Status” warning

前端 未结 8 1953
猫巷女王i
猫巷女王i 2020-12-30 10:19

When I tried to install packages on my work laptop, I got an error. I\'ve been told that I have full privileges with the laptop, so there should be no blocks.

I thi

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-30 10:55

    Several of my students have been having problems like this with R3.3.3 (Mac) and R3.5.0 (all). We found that installing devtools and loading packages from github helped get beyond the odd "non zero exit status" problems, e.g. to get the C50 package at https://github.com/topepo/C5.0:

    require("devtools")
    install_github("topepo/C5.0")
    

    We tried all of the solutions listed on this page prior to this method finally working.

提交回复
热议问题