Example notebook used in the "Jupyter in the Emacs universe" post.
- Clone the repository and change directory to the repository's root:
git clone https://github.com/martibosch/jupyter-emacs-post
cd jupyter-emacs-post
- Create the environment (this requires conda/mamba) and activate it:
# replace conda for mamba if needed
conda env create -f environment.yml
conda activate jupyter-emacs
- Register the IPython kernel of the
jupyter-emacs
environment
python -m ipykernel install --user --name jupyter-emacs --display-name "Python (jupyter-emacs)"
- You can now execute the
notebook.ipynb
file.