pip install jupyter
for remote access like gitpod or codespace, generate configure file:
jupyter notebook --generate-config
edit file jupyter_notebook_config.py
:
c.ServerApp.allow_remote_access = True
generate login password:
jupyter notebook password
-
install deno:
curl -fsSL https://deno.land/install.sh | sh
-
install deno jupyter kernel:
deno jupyter --unstable --install
-
restart jupyter lab
- Install R
follow the install documents: https://cloud.r-project.org/
- Install R kernel
enter R repl:
R
install package:
install.packages('IRkernel')
IRkernel::installspec() # to register the kernel in the current R installation
install jupyter extension:
jupyter labextension install @techrah/text-shortcuts