지방이의 Data Science Lab

[python] 주피터 노트북에서 R을 사용하는 법 본문

Data Analysis/Python

[python] 주피터 노트북에서 R을 사용하는 법

[지현] 2020. 12. 27. 00:07

간단 요약: 관리자 권한으로 anaconda prompt 열고, conda install -c r r-essentials 실행

 


R을 이용하지 않아도 깔 수 있습니다

 

install.packages('devtools')

devtools::install_github('IRkernel/IRkernel')

install.packages(c('rzmq','repr','IRkernel','IRdisplay'),repos = c('http://irkernel.github.io/', getOption('repos')), type = 'source'

IRkernel::installspec(user = FALSE)

quit()

 
 

아마 아래 코드 검색하다가 들어오셨을 수 도 있겠네요. 

1
2
3
4
5
6
7
> IRkernel::installspec()
 
Error in IRkernel::installspec() : 
  jupyter-client has to be installed but “jupyter kernelspec --version” exited with code 127.
In addition: Warning message:
In system2("jupyter", c("kernelspec""--version"), FALSE, FALSE) :
  '"jupyter"' not found
 

 

1. 관리자 권한으로 ANACONDA PROMPT 열기

관리자 권한으로 anaconda prompt 실행


2. 코드 입력

1
2
conda install -c r r-essentials
 
 

라고 코드를 입력합니다.

 


 

R이 설치가 되었습니다. ╰(*°▽°*)╯

Comments