Install Jupyter Notebook

This commit is contained in:
Ohad Livne 2025-06-04 22:44:32 +03:00
parent 2a90ef5c0d
commit 14e7c88801
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
2 changed files with 12 additions and 0 deletions

View file

@ -152,3 +152,14 @@
("C-c C-p" . nil) ("C-c C-p" . nil)
("C-c C-l" . nil)) ("C-c C-l" . nil))
:hook ((python-mode . load-python-env))) :hook ((python-mode . load-python-env)))
;; Jupyter notebook integration
(use-package ein
:bind (("C-z j" . ein:run)
:map ein:notebook-mode-map
("C-c C-x k" . ein:notebook-switch-kernel))
:config
(require 'ein-notebook)
:custom
(ein:jupyter-default-notebook-directory "~/Projects/notebooks")
(ein:output-area-inlined-images t))

View file

@ -7,6 +7,7 @@ emacs-mozc \
exa \ exa \
htop \ htop \
ibus-mozc \ ibus-mozc \
jupyter \
keepassxc \ keepassxc \
mpv \ mpv \
python3-venv python3-venv