R Studio 에서 matlib 설치시 발생하는 문제 :
error: package or namespace load failed for ‘matlib’:
OpenGL is not available in this build in R studio
rgl 라이브러리 관련해서 load가 계속 되지 않는다고 뜹니다.
에러 설명에 https://stackoverflow.com/questions/66011929/package-rgl-in-r-not-loading-in-mac-os/66127391#66127391 에 접속하라고 나올때도 있습니다.
해당 스택오택오버 사이트을 들어가면, 해결방법이 나옵니다.
So the solution appears to be:
- Uninstall XQuartz by dragging it from the Applications/Utilities folder to the trash.
- Uninstall rgl by running remove.packages("rgl") in R.
- Delete those two files named org.xquartz.startx.plist from /Library/LaunchDaemons and /Library/LaunchAgents.
- Reboot your system to remove the processes started from those files.
- Reinstall XQuartz 2.7.11.
- Reinstall rgl either from CRAN or from source.
해결 방법 :
우선 제 맥북에는 XQuartz가 설치 되어있지 않아서 위의 해결방법으로는 해결되지 않았습니다.
아래와 같이 진행후 정상 동작하는 것을 볼 수 있었습니다.
- remove.packages("rgl")
- XQuzrtz 설치 (최신버전 / 버전은 상관없습니다.)
- 자동으로 재부팅
- install.packages("rgl")
- install.packages("matlib")
- library(matlib)
'AI Master Degree > Math Foundations for Decision and DS' 카테고리의 다른 글
Analysis of Variance (0) | 2021.10.29 |
---|---|
Chap 9. Statistics Part 2 (0) | 2021.10.20 |
Project Proposal 1 - Food World Cup (0) | 2021.09.09 |