Skip to content

aaelony/multiple_notebook_kernels

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jupyter Notebook with a Rust, R, and python kernel

Steps to get it working:

  1. Install uv. See https://docs.astral.sh/uv/getting-started/installation/

  2. Start a new project:

uv init notebook_hello
cd notebook_hello
  1. Add the python kernel you prefer, e.g. version 3.13
uv add --dev ipykernel
uv run ipython kernel install --user --name notebook_hello
uv run --python 3.13 --with jupyter jupyter lab
  1. Set up the R kernel
Rscript -e "install.packages('IRkernel'); IRkernel::installspec(); "
  1. Set up the Rust kernel
cargo install jupyter
cargo install evcxr_jupyter
  1. Run the notebook server
uv run --with jupyter jupyter lab

You should see a notebook with the option to switch between Rust, Python, and R kernels.

Kernels

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published