Rust in Jupyter Notebook betreiben
#
- Miniconda installieren (
miniconda
in AUR)
conda
binary temporär $PATH
hinzufügen: export PATH=$PATH:/opt/miniconda/bin
- Neue conda-Umgebung erstellen:
conda create -n <name-der-env> python=3
- Umgebung aktivieren:
conda activate <name-der-env>
- Notwendige Erweiterungen für conda installieren:
conda install -c conda-forge jupyterlab
und conda install -c anaconda cmake -y
- EvCxR Jupyter Kernel installieren:
cargo install evcxr_jupyter; evcxr_jupyter --install
- Jupyter Lab starten:
jupyter lab