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
- Host: GitHub
- URL: https://github.com/iffranciscome/sc-rust
- Owner: IFFranciscoME
- License: mit
- Created: 2025-08-24T01:30:47.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-08-24T04:40:58.000Z (about 1 month ago)
- Last Synced: 2025-08-24T12:41:48.319Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```