Rust를 Jupyter Notebook에서 사용

Jay Lee
Oct 27, 2021

0. 사전 준비

rust

$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

anaconda

https://www.anaconda.com/products/individual

1. RERL

$ cargo install evcxr_repl

에러 나면, Rust 버전 체크!

2. Jupyter

$ conda create --name evcxr 
$ conda activate evcxr
$ conda install jupyter
$ conda install -y -c conda-forge nb_conda_kernels
$ cargo install evcxr_jupyter
$ evcxr_jupyter --install
$ jupyter notebook

짠하고 노트북이 브라우저에 딱!

--

--