Closed3

Rustでreplやjupyter-notebook使う

esakaesaka

Rust勉強しようと思って、本を写経しようと思った。
できれば、replとかでやりたいなと思ってググったら、以下が使えるとのこと

https://github.com/google/evcxr

googleがやってるし安心感ある

esakaesaka

前提としてcargoインストール済み

$ cargo version
cargo 1.54.0-beta (5ae8d74b3 2021-06-22)

Replのインストール/実行

$ cargo install evcxr_repl
$ evcxr
Welcome to evcxr. For help, type :help
>> let s1: String = String::from("Hello World");
>> s1
"Hello World"
esakaesaka

jupyter-notebook版

前提としてjupyter入ってる

$ jupyter-notebook --version
6.4.0

インストール

$ cargo install evcxr_jupyter
$ evcxr_jupyter --install
...
Installation complete

notebook起動

$ jupyte-notebook

NewのところにRustが追加されてる

これで作成すると使えるよ

このスクラップは2021/09/30にクローズされました