Last active
May 10, 2024 06:39
-
-
Save dmvianna/6fc8333310f4f8d91c5417f602fd720d to your computer and use it in GitHub Desktop.
rust repl via jupyter
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/env bash | |
set -euox pipefail | |
python -m venv .venv | |
source .venv/bin/activate | |
pip install jupyterlab plotly | |
cargo install evcxr_jupyter | |
evcxr_jupyter --install | |
# and then... | |
jupyter lab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment