Search
Duplicate
🛠️

Jupyter에서 R 사용하기

R을 켜고, 다음 명령어를 실행하여 IRkernel을 설치한다.
install.packages('devtools') devtools::install_github('IRkernel/IRkernel') IRkernel::installspec() # to register the kernel in the current R installation
R
복사
가상환경 안에 jupyter가 설치된 경우, R도 가상환경 안에 설치해 주는게 속 편하다.
conda install -c r r-essentials r-devtools
Shell
복사