JupyterLab で Rust を使う2020年11月2日 | |
はじめにJupyterLab で Rust を使う。Miniconda を利用する。Rust はインストールされているものとする。 仮想環境の作成適当に仮想環境を作る。 $ conda create -n rust python=3.7 $ conda activate rust セットアップJupyterLab をインストール。 $ conda install -c conda-forge jupyterlab CMake をインストールする。dmg でインストールした場合は、次のようにコマンドライン用のパスを設定する。 export PATH="/Applications/CMake.app/Contents/bin":"$PATH" cargo で evcxr_jupyter をインストールする。 $ cargo install evcxr_jupyter $ evcxr_jupyter --install アンインストール$ evcxr_jupyter --uninstall | |
PENGUINITIS |