An open API service indexing awesome lists of open source software.

https://github.com/iffranciscome/sc-rust

Notes and Snippets on Scientific Computing with Rust
https://github.com/iffranciscome/sc-rust

Last synced: about 1 month ago
JSON representation

Notes and Snippets on Scientific Computing with Rust

Awesome Lists containing this project

README

          

# sc-rust

Notes and Snippets on Scientific Computing with Rust

## Rust Notebook Kernel

Make sure using the up-to-date installation tools

```shel
rustup update
```

Clean environment and cache from any previous execution.

```shell
cargo clean && cargo install evcxr_jupyter
```

Install the Rust kernel for jupyter

```shell
evcxr_jupyter --install
```

Then just run jupyter and the `rust` kernel will be available.

```shell
jupyter notebook
```