Posts about rust

How to add Rust support in Jupyter notebooks

#!/bin/bash
# Adds Rust lang support in Jupyter notebooks
# Ref: https://github.com/google/evcxr

# Requirements : Jupyter already installed. If you need it, go to "https://www.anaconda.com/products/distribution"

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

# Install notebook kernel:
cargo install evcxr_jupyter
evcxr_jupyter --install

# Stop and Restart the Jupyter server
# or in the browser, logoff and login your Jupyter session again