Skip to content

Instantly share code, notes, and snippets.

@Hattshire
Created April 1, 2023 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hattshire/c4ccef5bcdde1b4406f2cf741f721631 to your computer and use it in GitHub Desktop.
Save Hattshire/c4ccef5bcdde1b4406f2cf741f721631 to your computer and use it in GitHub Desktop.
Installing EVCXR Notebook

Installing EVCXR Rust Notebook on ARM64 Debian 11

Note: Anaconda3 and Miniconda 3 installers for conda throws Illegal Instruction on install.

0. Install rustup

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

1. Install conda and rustup

wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh
chmod +x Miniforge3-Linux-aarch64.sh
./Miniforge3-Linux-aarch64.sh
conda update -n base -c conda-forge conda

2. Create conda environment

conda create --name evcxr
conda activate evcxr
conda install -y -c conda-forge nb_conda_kernels

3. Install evcxr

cargo install evcxr_jupyter
evcxr_jupyter --install

4. Run Jupyter

jupyter notebook
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment