Last active
December 30, 2022 18:49
-
-
Save marcelotournier/0c1a494f7a4e316c2562f7cb6cd2bef8 to your computer and use it in GitHub Desktop.
Adds Rust lang support in Jupyter notebooks:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Adds Rust lang support in Jupyter notebooks: | |
# 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: | |
# https://github.com/google/evcxr | |
cargo install evcxr_jupyter | |
evcxr_jupyter --install | |
# Stop and Restart the Jupyter server | |
# or in the browser, logoff and login your Jupyter session again |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment