top of page

ubuntu install R in jupyter notebook

## install jupyter notebook


sudo apt install jupyter-notebook



## install jupyter client


sudo apt install jupyter-client



## pass in super user to manipulate R


sudo su --> password


R


install.packages('IRkernel')



IRkernel::installspec(user = FALSE)


q()


exit

## exit root



## start jupyter notebook in user


jupyter-notebook

Comentários


bottom of page