Installing rgl on Ubuntu and Mac: X11 not found

前端 未结 7 2101
后悔当初
后悔当初 2020-11-28 07:32

I have seen this question here: Error in loading rgl package with Mac OS X but there is no mentioning about installation error, which is my case. I cannot install rgl<

7条回答
  •  天涯浪人
    2020-11-28 07:47

    Not sure about Mac case but on Windows I faced issues downloading the same rgl Package. Installing the RGL requires the devtools package

    install.packages("devtools")
    library(devtools)
    install.packages("rgl")
    library(rgl)
    

提交回复
热议问题